Fix dependency on bukkit-bleeding level bukkit
This commit is contained in:
parent
39b7a949ad
commit
5b1a1462f1
1 changed files with 4 additions and 2 deletions
|
|
@ -480,10 +480,12 @@ public class NewMapChunkCache implements MapChunkCache {
|
||||||
return chunk.getHighestBlockYAt(x, z);
|
return chunk.getHighestBlockYAt(x, z);
|
||||||
}
|
}
|
||||||
public boolean isSectionEmpty(int sy) {
|
public boolean isSectionEmpty(int sy) {
|
||||||
return chunk.isSectionEmpty(sy);
|
//TODO return chunk.isSectionEmpty(sy);
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
public int getTopNonEmptySection() {
|
public int getTopNonEmptySection() {
|
||||||
return chunk.getTopNonEmptySection();
|
return 0;
|
||||||
|
//TODO return chunk.getTopNonEmptySection();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue