Rename rubber slab and stair. Fixes #2834

This commit is contained in:
modmuss50 2022-05-21 19:38:23 +01:00
parent 23375b5cd3
commit 5a0d017cd0
31 changed files with 118 additions and 118 deletions

View file

@ -99,10 +99,10 @@ public class ModRegistry {
RebornRegistry.registerBlock(TRContent.STRIPPED_RUBBER_WOOD = InitUtils.setup(new PillarBlock(InitUtils.setupRubberBlockSettings(2.0F, 15.0F)), "stripped_rubber_wood"), itemGroup);
RebornRegistry.registerBlock(TRContent.RUBBER_PLANKS = InitUtils.setup(new BlockRubberPlank(), "rubber_planks"), itemGroup);
RebornRegistry.registerBlock(TRContent.RUBBER_SAPLING = InitUtils.setup(new BlockRubberSapling(), "rubber_sapling"), itemGroup);
RebornRegistry.registerBlock(TRContent.RUBBER_PLANK_SLAB = InitUtils.setup(new SlabBlock(InitUtils.setupRubberBlockSettings(2.0F, 15.0F)), "rubber_plank_slab"), itemGroup);
RebornRegistry.registerBlock(TRContent.RUBBER_SLAB = InitUtils.setup(new SlabBlock(InitUtils.setupRubberBlockSettings(2.0F, 15.0F)), "rubber_slab"), itemGroup);
RebornRegistry.registerBlock(TRContent.RUBBER_FENCE = InitUtils.setup(new FenceBlock(InitUtils.setupRubberBlockSettings(2.0F, 15.0F)), "rubber_fence"), itemGroup);
RebornRegistry.registerBlock(TRContent.RUBBER_FENCE_GATE = InitUtils.setup(new FenceGateBlock(InitUtils.setupRubberBlockSettings(2.0F, 15.0F)), "rubber_fence_gate"), itemGroup);
RebornRegistry.registerBlock(TRContent.RUBBER_PLANK_STAIR = InitUtils.setup(new BlockRubberPlankStair(), "rubber_plank_stair"), itemGroup);
RebornRegistry.registerBlock(TRContent.RUBBER_STAIR = InitUtils.setup(new BlockRubberPlankStair(), "rubber_stair"), itemGroup);
RebornRegistry.registerBlock(TRContent.RUBBER_TRAPDOOR = InitUtils.setup(new RubberTrapdoorBlock(), "rubber_trapdoor"), itemGroup);
RebornRegistry.registerBlock(TRContent.RUBBER_BUTTON = InitUtils.setup(new RubberButtonBlock(), "rubber_button"), itemGroup);
RebornRegistry.registerBlock(TRContent.RUBBER_PRESSURE_PLATE = InitUtils.setup(new RubberPressurePlateBlock(), "rubber_pressure_plate"), itemGroup);

View file

@ -40,10 +40,10 @@ public class FuelRecipes {
registry.add(TRContent.RUBBER_WOOD, 300);
registry.add(TRContent.STRIPPED_RUBBER_WOOD, 300);
registry.add(TRContent.RUBBER_PLANKS, 300);
registry.add(TRContent.RUBBER_PLANK_SLAB, 150);
registry.add(TRContent.RUBBER_SLAB, 150);
registry.add(TRContent.RUBBER_FENCE, 300);
registry.add(TRContent.RUBBER_FENCE_GATE, 300);
registry.add(TRContent.RUBBER_PLANK_STAIR, 300);
registry.add(TRContent.RUBBER_STAIR, 300);
registry.add(TRContent.RUBBER_TRAPDOOR, 300);
registry.add(TRContent.RUBBER_PRESSURE_PLATE, 300);
registry.add(TRContent.RUBBER_DOOR, 200);

View file

@ -110,8 +110,8 @@ public class TRContent {
public static Block RUBBER_LEAVES;
public static Block RUBBER_LOG;
public static TagKey<Item> RUBBER_LOGS = TagKey.of(Registry.ITEM_KEY, new Identifier(TechReborn.MOD_ID, "rubber_logs"));
public static Block RUBBER_PLANK_SLAB;
public static Block RUBBER_PLANK_STAIR;
public static Block RUBBER_SLAB;
public static Block RUBBER_STAIR;
public static Block RUBBER_PLANKS;
public static Block RUBBER_SAPLING;
public static Block RUBBER_FENCE;