getBlockData -> getBlockState

This commit is contained in:
dfsek
2021-12-17 08:36:03 -07:00
parent e5eaba9150
commit 2c12892111
2 changed files with 2 additions and 2 deletions
@@ -27,5 +27,5 @@ public interface BlockEntity extends Handle {
int getZ(); int getZ();
BlockState getBlockData(); BlockState getBlockState();
} }
@@ -73,7 +73,7 @@ public class BukkitBlockEntity implements BlockEntity {
} }
@Override @Override
public BlockState getBlockData() { public BlockState getBlockState() {
return BukkitBlockState.newInstance(delegate.getBlockData()); return BukkitBlockState.newInstance(delegate.getBlockData());
} }
} }