Fixed some debug

This commit is contained in:
Tahg
2011-02-24 03:51:00 -05:00
parent 280880d163
commit 5d3b8de87a
3 changed files with 30 additions and 8 deletions

View File

@@ -203,12 +203,6 @@ public class World implements IBlockAccess {
}
result = lastChunkAccessed;
}
if(result.j != i || result.k != j) {
if(this instanceof WorldServer) {
WorldServer ws = (WorldServer) this;
MinecraftServer.a.severe("Chunk fetched was not the chunk requested.");
}
}
return result;
}
// CraftBukkit end