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

View File

@ -27,5 +27,5 @@ public interface BlockEntity extends Handle {
int getZ(); int getZ();
BlockState getBlockData(); BlockState getBlockState();
} }

View File

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