Skip to content

Commit

Permalink
add more efficient coke brick recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
TechLord22 committed Sep 7, 2021
1 parent e732cce commit f3db325
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public static void register() {
.build();

GarnetSand = new Material.Builder(2515, "garnet_sand")
.dust(1)
.dust(1).ore()
.color(0xC86400).iconSet(SAND)
.components(GarnetRed, 1, GarnetYellow, 1)
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,8 @@ private static void registerAlloyRecipes() {

ALLOY_SMELTER_RECIPES.recipeBuilder().duration(10).EUt(7).input(OrePrefix.ingot, Materials.Rubber, 2).notConsumable(MetaItems.SHAPE_MOLD_PLATE).output(OrePrefix.plate, Materials.Rubber).buildAndRegister();
ALLOY_SMELTER_RECIPES.recipeBuilder().duration(100).EUt(7).input(OrePrefix.dust, Materials.Sulfur).input(OrePrefix.dust, Materials.RawRubber, 3).output(OrePrefix.ingot, Materials.Rubber).buildAndRegister();

ALLOY_SMELTER_RECIPES.recipeBuilder().duration(150).EUt(7).inputs(OreDictUnifier.get("sand")).inputs(new ItemStack(Items.CLAY_BALL)).outputs(COKE_OVEN_BRICK.getStackForm(2)).buildAndRegister();
}

private static void registerAssemblerRecipes() {
Expand Down

0 comments on commit f3db325

Please sign in to comment.