mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-24 19:25:15 +01:00
Fix dependency on bukkit-bleeding level bukkit
This commit is contained in:
parent
bcf679b078
commit
63a638f96e
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user