Code cleanup, fixed doors, chunk entity fetching

This commit is contained in:
Tahg
2011-03-11 16:25:35 -05:00
parent 786fdfb9fe
commit 078f48c0fb
17 changed files with 61 additions and 52 deletions

View File

@@ -155,7 +155,7 @@ public class CraftWorld implements World {
net.minecraft.server.Chunk chunk = null;
if(provider.c == null) {
if (provider.c == null) {
chunk = provider.b;
} else {
chunk = provider.c.b(x, z);
@@ -169,7 +169,7 @@ public class CraftWorld implements World {
}
public boolean refreshChunk(int x, int z) {
if(!isChunkLoaded(x, z)) {
if (!isChunkLoaded(x, z)) {
return false;
}