diff --git a/CHANGELOG.md b/CHANGELOG.md index 2218c8516..b2e0206ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,14 +3,14 @@ ## Unreleased ### Changes - Added new large boilers that will soon replace the original gregtech boilers. These ones can accept more kinds of water and booster fluids to push your boilers further - check the new quest for more information. (#3360) @TomPlop +- Added a new Large Steam Turbine that has a base production of 2048 EU/t but can't accept higher Rotors than EV @TomPlop - Removed vanilla advancements @Mqrius - Added copper spindle, with much more durability than the clay one (#3345) @DrEthan77 - Phantom Silk now counts as dark cloth instead of light cloth for the sewing table (#3376) @Pyritie - New textures for the blue steel diving equipment to match the blue steel armor (#3385) @Facundo46 - TFC jams can now also use honey instead of only sugars (#3362) @SakuraKitsurugi -- Recipe of Steel Pipe Casing and Magnalium Turbine Casing changed @TomPlop -- Added the new Large Steam Turbine that has a base production of 2048 Eu/t but can't accept higher Rotors that EV @TomPlop -- Added the Repair Kit so you can finally repair your Gregtech Tools @TomPlop +- Changed the recipe of Steel Pipe Casing and Magnalium Turbine Casing @TomPlop +- Added a Repair Kit item so you can finally repair your GregTech Tools! Recipes for armor and other things coming soon. @TomPlop @Redeix - Changed the HV Dynamo Hatch to be craftable before the Cleanroom @TomPlop - Added a 16A HV Dynamo Hatch @TomPlop ### Bug fixes diff --git a/kubejs/server_scripts/gregtech/recipes.js b/kubejs/server_scripts/gregtech/recipes.js index 6ebadd856..427ab78ec 100644 --- a/kubejs/server_scripts/gregtech/recipes.js +++ b/kubejs/server_scripts/gregtech/recipes.js @@ -423,6 +423,7 @@ const registerGTCEURecipes = (event) => { event.recipes.gtceu.assembler('gtceu:voltage_coil_hv') .itemInputs('#forge:rods/magnetic_steel', '#forge:fine_wires/black_steel') + .itemOutputs('gtceu:hv_voltage_coil') .circuit(1) .duration(20*20) .EUt(GTValues.VA[GTValues.MV]) @@ -430,6 +431,7 @@ const registerGTCEURecipes = (event) => { event.recipes.gtceu.assembler('gtceu:dynamo_hatch_hv') .itemInputs('gtceu:hv_machine_hull', '2x #forge:springs/gold', '2x gtceu:ulpic_chip', 'gtceu:hv_voltage_coil') .inputFluids('gtceu:sodium_potassium 1000') + .itemOutputs('gtceu:hv_energy_output_hatch') .duration(20*20) .EUt(GTValues.VA[GTValues.MV]) }