Fix reinforced glass rendering

This commit is contained in:
vhd 2020-01-11 11:49:22 +02:00
parent bc47a03451
commit 9dc063e153

View file

@ -32,7 +32,7 @@ import net.minecraft.sound.BlockSoundGroup;
public class BlockReinforcedGlass extends GlassBlock {
public BlockReinforcedGlass() {
super(FabricBlockSettings.of(Material.GLASS).strength(4f, 60f).sounds(BlockSoundGroup.STONE).build());
super(FabricBlockSettings.of(Material.GLASS).strength(4f, 60f).sounds(BlockSoundGroup.STONE).nonOpaque().build());
}
}