Made Skyroot Bookshelves craftable.

This commit is contained in:
bconlon 2020-07-03 17:55:24 -07:00
parent ca02c8d76e
commit 44efcdeb92

View file

@ -301,6 +301,8 @@ public class AetherRegistries {
register("holystone_brick_stairs", new ItemStack(BlocksAether.holystone_brick_stairs, 4), "Z ", "ZZ ", "ZZZ", 'Z', new ItemStack(BlocksAether.holystone_brick, 1));
register("skyroot_stairs", new ItemStack(BlocksAether.skyroot_stairs, 4), "Z ", "ZZ ", "ZZZ", 'Z', new ItemStack(BlocksAether.skyroot_planks));
register("skyroot_bookshelf", new ItemStack(BlocksAether.skyroot_bookshelf, 1), "ZZZ", "XXX", "ZZZ", 'Z', new ItemStack(BlocksAether.skyroot_planks), 'X', new ItemStack(Items.book));
register("skyroot_bed_item", new ItemStack(ItemsAether.skyroot_bed_item, 1), "XXX", "ZZZ", 'Z', new ItemStack(BlocksAether.skyroot_planks), 'X', new ItemStack(Blocks.wool, 1, 9));
}