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)