Implement Vertical Slabs

Still have some bugs such as waterlogging not working and not all 1.17 blocks have been added
This commit is contained in:
2021-11-08 20:19:43 -05:00
parent c1e1065c3b
commit 2ca55f3b48
203 changed files with 2291 additions and 2 deletions

View File

@@ -27,5 +27,9 @@ public class VPItemGroups {
//Food Tab
public static final ItemGroup FOOD = FabricItemGroupBuilder.build(
new Identifier("vplus", "food"),
() -> new ItemStack((Items.ENCHANTED_GOLDEN_APPLE)));
() -> new ItemStack(Items.ENCHANTED_GOLDEN_APPLE));
//Vertical Slabs Tab
public static final ItemGroup VERTICAL_SLABS = FabricItemGroupBuilder.build(
new Identifier("vplus", "vert_slabs"),
() -> new ItemStack(Items.BRICK_SLAB));
}