Fix dependency on bukkit-bleeding level bukkit

This commit is contained in:
Mike Primm 2012-02-16 07:53:15 -06:00
parent bcf679b078
commit 63a638f96e

View File

@ -480,10 +480,12 @@ public class NewMapChunkCache implements MapChunkCache {
return chunk.getHighestBlockYAt(x, z);
}
public boolean isSectionEmpty(int sy) {
return chunk.isSectionEmpty(sy);
//TODO return chunk.isSectionEmpty(sy);
return false;
}
public int getTopNonEmptySection() {
return chunk.getTopNonEmptySection();
return 0;
//TODO return chunk.getTopNonEmptySection();
}
}