Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 02:50:05 +01:00
Ursprung
da264b52e1
Commit
b796106dd7
@ -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) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren