aether-legacy/src/main/java/com/gildedgames/the_aether/blocks/decorative/BlockAetherStairs.java

12 lines
293 B
Java
Raw Normal View History

2020-08-14 08:29:22 +02:00
package com.gildedgames.the_aether.blocks.decorative;
2016-12-17 16:28:16 +01:00
2018-12-07 05:33:43 +01:00
import net.minecraft.block.Block;
2016-12-17 16:28:16 +01:00
import net.minecraft.block.BlockStairs;
2018-12-07 06:32:48 +01:00
public class BlockAetherStairs extends BlockStairs {
2023-03-13 19:53:26 +01:00
public BlockAetherStairs(Block block) {
super(block, 0);
2016-12-17 16:28:16 +01:00
2023-03-13 19:53:26 +01:00
this.setLightOpacity(0);
}
2016-12-17 16:28:16 +01:00
}