Fix boundary condition that was causing some missed tiles on chunk triggers
This commit is contained in:
parent
8360596b02
commit
fb73802e9b
1 changed files with 1 additions and 1 deletions
|
|
@ -781,7 +781,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; j <= maxtiley; j++) {
|
||||||
addTile(tiles, world, i, j);
|
addTile(tiles, world, i, j);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue