Fixed compile issues with StructureGrowDelegate not implementing the new isEmpty method

By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
CraftBukkit/Spigot 2012-03-01 15:38:34 +00:00
parent be0e906988
commit d267b15b44

View file

@ -41,4 +41,8 @@ public class StructureGrowDelegate implements BlockChangeDelegate {
public List<BlockState> getBlocks() { public List<BlockState> getBlocks() {
return blocks; return blocks;
} }
public boolean isEmpty(int x, int y, int z) {
return world.getBlockAt(x, y, z).isEmpty();
}
} }