remove debug

This commit is contained in:
Jesse Boyd
2019-05-05 22:19:13 +10:00
parent 7c174beaee
commit d603f45063
5 changed files with 2 additions and 7 deletions

View File

@ -635,7 +635,7 @@ public class CuboidRegion extends AbstractRegion implements FlatRegion {
int maxChunkX = maxX >> 4;
if (maxChunkX >= X) {
int minChunkZ = minZ >> 4;
if (minChunkZ <= X) {
if (minChunkZ <= Z) {
int maxChunkZ = maxZ >> 4;
if (maxChunkZ >= Z) {
int cx1 = X << 4;