Fix dependency on bukkit-bleeding level bukkit
This commit is contained in:
parent
bcf679b078
commit
63a638f96e
1 changed files with 4 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue