From 764f1494234cd5631e70b397574dff28b0180cf0 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 29 Jul 2025 17:39:32 +0100 Subject: [PATCH] fixed wire cutter head extruder mold typo --- CHANGELOG.md | 1 + kubejs/server_scripts/gregtech/recipes.materials.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f745b184e..6317f081d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ - Fixed cobalt brass and potin double plates not being obtainable until MV @Pyritie - Fixed missing recipe for cooking fox meat @Pyritie - Fixed ingot extruder mold recipe conflict @BlueBoat29 +- Fixed wire cutter head extruder recipes missing a mold @Pyritie - Possibly fixed the issue with airplanes and akistor carts not appearing when placing them (#1447) @Pyritie ### Translations - Ukranian @Furryks diff --git a/kubejs/server_scripts/gregtech/recipes.materials.js b/kubejs/server_scripts/gregtech/recipes.materials.js index 9ecc9e1a6..97d75d1de 100644 --- a/kubejs/server_scripts/gregtech/recipes.materials.js +++ b/kubejs/server_scripts/gregtech/recipes.materials.js @@ -1153,7 +1153,7 @@ function registerGTCEUMetalRecipes(event) { makeToolRecipe(GTToolType.BUTCHERY_KNIFE, TFGTagPrefix.toolHeadButcheryKnife, 'tfg:butchery_knife_head_extruder_mold', circuit++, material) makeToolRecipe(GTToolType.SCREWDRIVER, TagPrefix.toolHeadScrewdriver, 'tfg:screwdriver_tip_extruder_mold', circuit++, material) makeToolRecipe(GTToolType.WRENCH, TagPrefix.toolHeadWrench, 'tfg:wrench_tip_extruder_mold', circuit++, material) - makeToolRecipe(GTToolType.WIRE_CUTTER, TagPrefix.toolHeadWireCutter, 'tfg:wire_cutter_extruder_mold', circuit++, material) + makeToolRecipe(GTToolType.WIRE_CUTTER, TagPrefix.toolHeadWireCutter, 'tfg:wire_cutter_head_extruder_mold', circuit++, material) processToolMortar(GTToolType.MORTAR, material)