Skip to content

Commit

Permalink
Correct output total for Soul Torch recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
jss2a98aj committed Apr 18, 2024
1 parent 25e3e34 commit c9eb33f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/ganymedes01/etfuturum/recipes/ModRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -700,10 +700,10 @@ ore_dyes[dye], new ItemStack(Blocks.sand, 1, 0), new ItemStack(Blocks.sand, 1, 0
addShapedRecipe(ModBlocks.LANTERN.newItemStack(), "i", "x", 'x', "ingotIron", 'i', Blocks.torch);
addShapedRecipe(ModBlocks.SOUL_LANTERN.newItemStack(), "i", "x", 'x', "ingotIron", 'i', ModBlocks.SOUL_TORCH.get());
}
addShapedRecipe(ModBlocks.SOUL_TORCH.newItemStack(), "i", "x", "s", 'x', "stickWood", 'i', "coal", 's', "soulSand");
addShapedRecipe(ModBlocks.SOUL_TORCH.newItemStack(), "i", "x", "s", 'x', "stickWood", 'i', "coal", 's', "soulSoil");
addShapedRecipe(ModBlocks.SOUL_TORCH.newItemStack(), "i", "x", "s", 'x', "stickWood", 'i', "charcoal", 's', "soulSand");
addShapedRecipe(ModBlocks.SOUL_TORCH.newItemStack(), "i", "x", "s", 'x', "stickWood", 'i', "charcoal", 's', "soulSoil");
addShapedRecipe(ModBlocks.SOUL_TORCH.newItemStack(4), "i", "x", "s", 'x', "stickWood", 'i', "coal", 's', "soulSand");
addShapedRecipe(ModBlocks.SOUL_TORCH.newItemStack(4), "i", "x", "s", 'x', "stickWood", 'i', "coal", 's', "soulSoil");
addShapedRecipe(ModBlocks.SOUL_TORCH.newItemStack(4), "i", "x", "s", 'x', "stickWood", 'i', "charcoal", 's', "soulSand");
addShapedRecipe(ModBlocks.SOUL_TORCH.newItemStack(4), "i", "x", "s", 'x', "stickWood", 'i', "charcoal", 's', "soulSoil");

addShapedRecipe(ModBlocks.BARREL.newItemStack(), "xsx", "x x", "xsx", 'x', "plankWood", 's', "slabWood");

Expand Down

0 comments on commit c9eb33f

Please sign in to comment.