Add directionals for chests and slabs "type" block state

Fixes #987
This commit is contained in:
dordsor21 2021-06-11 15:25:52 +01:00
parent da264b52e1
commit b796106dd7
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -160,9 +160,12 @@ public class BlockTransformExtent extends ResettableExtent {
} else {
List values = property.getValues();
PropertyKey key = property.getKey();
if (key == PropertyKey.HALF) {
if (key == PropertyKey.HALF || values.contains("top")) {
return adapt(UP, DOWN);
}
if (values.contains("left")) {
return adapt(0L, combine(EAST, WEST), combine(NORTH, SOUTH));
}
if (key == PropertyKey.ROTATION) {
List<Direction> directions = new ArrayList<>();
for (Object value : values) {
@ -332,7 +335,11 @@ public class BlockTransformExtent extends ResettableExtent {
if (property instanceof DirectionalProperty) {
return true;
}
return directional.contains(property.getKey());
if (directional.contains(property.getKey())) {
return true;
}
List<?> values = property.getValues();
return (values.contains("top") || values.contains("left"));
}
private static BaseBlock transformBaseBlockNBT(BlockState transformed, CompoundTag tag, Transform transform) {