mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-17 22:31:52 +00:00
getBlockData -> getBlockState
This commit is contained in:
@@ -27,5 +27,5 @@ public interface BlockEntity extends Handle {
|
|||||||
|
|
||||||
int getZ();
|
int getZ();
|
||||||
|
|
||||||
BlockState getBlockData();
|
BlockState getBlockState();
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -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());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user