Fixed compile issues with StructureGrowDelegate not implementing the new isEmpty method

This commit is contained in:
Nathan Adams 2012-03-01 15:38:34 +00:00
parent 6f1fecbd31
commit a5be079797

View File

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