Fix boundary condition that was causing some missed tiles on chunk triggers

This commit is contained in:
Mike Primm 2011-08-19 22:38:08 -05:00
parent f0a8300632
commit e643292a7e

View File

@ -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);
} }
} }