We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a38ea4 commit b89676fCopy full SHA for b89676f
1 file changed
src/main/java/com/aetherteam/aether/block/AetherBlocks.java
@@ -310,6 +310,8 @@ private static <T extends Block> Supplier<BlockItem> registerBlockItem(final Def
310
return new EntityBlockItem(block.get(), ChestMimicBlockEntity::new, new Item.Properties());
311
} else if (block == TREASURE_CHEST) {
312
return new EntityBlockItem(block.get(), TreasureChestBlockEntity::new, new Item.Properties());
313
+ } else if (block == SKYROOT_DOOR) {
314
+ return new DoubleHighBlockItem(block.get(), new Item.Properties());
315
} else if (block == SUN_ALTAR) {
316
return new BlockItem(block.get(), new Item.Properties().fireResistant());
317
} else if (block == SKYROOT_BED) {
0 commit comments