Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Negate "hasCollision" for isTranslucent()
Dieser Commit ist enthalten in:
Ursprung
2de45458d4
Commit
d9240c5626
@ -23,7 +23,7 @@ public class BlockMaterial_1_15_2 implements BlockMaterial {
|
||||
this.material = defaultState.getMaterial();
|
||||
this.craftBlockData = CraftBlockData.fromData(defaultState);
|
||||
this.craftMaterial = craftBlockData.getMaterial();
|
||||
this.isTranslucent = ReflectionUtil.getField(Block.class, block, "v");
|
||||
this.isTranslucent = !(boolean) ReflectionUtil.getField(Block.class, block, "v");
|
||||
}
|
||||
|
||||
public Block getBlock() {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren