Fix for chunk level tile invalidate (jagged map edge on HD chunk generate)
This commit is contained in:
parent
b0f9ed5efe
commit
1245f626c9
1 changed files with 1 additions and 1 deletions
|
|
@ -847,7 +847,7 @@ public class IsoHDPerspective implements HDPerspective {
|
||||||
}
|
}
|
||||||
/* Now, add the tiles for the ranges - not perfect, but it works (some extra tiles on corners possible) */
|
/* Now, add the tiles for the ranges - not perfect, but it works (some extra tiles on corners possible) */
|
||||||
for(int i = mintilex; i <= maxtilex; i++) {
|
for(int i = mintilex; i <= maxtilex; i++) {
|
||||||
for(int j = mintiley; j <= maxtiley; j++) {
|
for(int j = mintiley-1; j <= maxtiley; j++) { /* Extra 1 - TODO: figure out why needed... */
|
||||||
addTile(tiles, world, i, j);
|
addTile(tiles, world, i, j);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue