Skip to content

Commit

Permalink
Fix Honeycomb Dupe (#2475)
Browse files Browse the repository at this point in the history
  • Loading branch information
YoungOnionMC authored and screret committed Dec 27, 2024
1 parent 0f6d7a6 commit 6f49d81
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ private static void registerArcRecycling(RecipeOutput provider, ItemStack input,
} else if (prefix == TagPrefix.block) {
if (ms != null && !ms.material().hasProperty(PropertyKey.GEM)) {
ItemStack output = ChemicalHelper.get(TagPrefix.ingot,
ms.material().getProperty(PropertyKey.INGOT).getArcSmeltingInto(), 9);
ms.material().getProperty(PropertyKey.INGOT).getArcSmeltingInto(),
(int) (TagPrefix.block.getMaterialAmount(ms.material()) / GTValues.M));
ResourceLocation itemPath = BuiltInRegistries.ITEM.getKey(input.getItem());
GTRecipeBuilder builder = GTRecipeTypes.ARC_FURNACE_RECIPES.recipeBuilder("arc_" + itemPath.getPath())
.outputItems(output)
Expand Down

0 comments on commit 6f49d81

Please sign in to comment.