Skip to content

Commit b89676f

Browse files
committed
fix: skyroot doors use DoubleHighBlockItem (#2746)
1 parent 5a38ea4 commit b89676f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/main/java/com/aetherteam/aether/block/AetherBlocks.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,8 @@ private static <T extends Block> Supplier<BlockItem> registerBlockItem(final Def
310310
return new EntityBlockItem(block.get(), ChestMimicBlockEntity::new, new Item.Properties());
311311
} else if (block == TREASURE_CHEST) {
312312
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());
313315
} else if (block == SUN_ALTAR) {
314316
return new BlockItem(block.get(), new Item.Properties().fireResistant());
315317
} else if (block == SKYROOT_BED) {

0 commit comments

Comments
 (0)