Add stair, slab and wall blocks for all metal storage blocks

This commit is contained in:
modmuss50 2020-06-28 16:13:39 +01:00
parent 4c400dd9a4
commit d92343f5a7
443 changed files with 10811 additions and 33 deletions

View file

@ -70,7 +70,7 @@ public class ModRegistry {
private static void registerBlocks() {
Settings itemGroup = new Item.Settings().group(TechReborn.ITEMGROUP);
Arrays.stream(Ores.values()).forEach(value -> RebornRegistry.registerBlock(value.block, itemGroup));
Arrays.stream(StorageBlocks.values()).forEach(value -> RebornRegistry.registerBlock(value.block, itemGroup));
StorageBlocks.blockStream().forEach(block -> RebornRegistry.registerBlock(block, itemGroup));
Arrays.stream(MachineBlocks.values()).forEach(value -> {
RebornRegistry.registerBlock(value.frame, itemGroup);
RebornRegistry.registerBlock(value.casing, itemGroup);