3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-19 21:10:10 +01:00

Fixed compile issues with StructureGrowDelegate not implementing the new isEmpty method

Dieser Commit ist enthalten in:
Nathan Adams 2012-03-01 15:38:34 +00:00
Ursprung 6f1fecbd31
Commit a5be079797

Datei anzeigen

@ -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();
}
}