mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-01 06:46:59 +01:00
Fixed compile issues with StructureGrowDelegate not implementing the new isEmpty method
This commit is contained in:
parent
6f1fecbd31
commit
a5be079797
1 changed files with 4 additions and 0 deletions
|
@ -41,4 +41,8 @@ public class StructureGrowDelegate implements BlockChangeDelegate {
|
|||
public List<BlockState> getBlocks() {
|
||||
return blocks;
|
||||
}
|
||||
|
||||
public boolean isEmpty(int x, int y, int z) {
|
||||
return world.getBlockAt(x, y, z).isEmpty();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue