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();
BlockState getBlockData();
BlockState getBlockState();
}

View File

@ -73,7 +73,7 @@ public class BukkitBlockEntity implements BlockEntity {
}
@Override
public BlockState getBlockData() {
public BlockState getBlockState() {
return BukkitBlockState.newInstance(delegate.getBlockData());
}
}