3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 16:12:51 +02:00

Negate "hasCollision" for isTranslucent() also for 1.15.0 and 1.14

Dieser Commit ist enthalten in:
Aurora 2020-05-25 18:32:41 +02:00 committet von dordsor21
Ursprung d9240c5626
Commit 1f898cd0d1
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -27,7 +27,7 @@ public class BlockMaterial_1_14 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() {

Datei anzeigen

@ -27,7 +27,7 @@ public class BlockMaterial_1_15 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() {