diff --git a/CHANGELOG.md b/CHANGELOG.md index 9302563f3..4c0f62dfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ - Added optional quest for bacon because its JEI recipe isn't clear (#1122) @SpicyNoodle5 - Anthracite now also superheats blaze burners @Pyritie - Changed LV chem reactor quest to work with any container of rubber instead of just a rubber bucket (#1116) @ofoxsmith +- Added perfect overclock to the electric greenhouse so it scales better with the pyro oven @Pyritie ### Bug fixes - Fixed issue where "melts into" tooltips and certain timers on Jade were missing (#1102) @Xikaro - Improved block ordering logic with AoE mining tools to reduce incorrect cave-ins @voidstar240 diff --git a/kubejs/startup_scripts/gtceu/recipe_types.js b/kubejs/startup_scripts/gtceu/recipe_types.js index 7ba54d0be..0645e0807 100644 --- a/kubejs/startup_scripts/gtceu/recipe_types.js +++ b/kubejs/startup_scripts/gtceu/recipe_types.js @@ -5,6 +5,7 @@ const registerGTCEuRecipeTypes = (event) => { .category('greenhouse') .setEUIO('in') .setMaxIOSize(3, 4, 1, 0) + .recipeModifiers([GTRecipeModifiers.ELECTRIC_OVERCLOCK.apply(OverclockingLogic.PERFECT_OVERCLOCK)]) .setProgressBar(GuiTextures.PROGRESS_BAR_ARROW, FillDirection.LEFT_TO_RIGHT) .setSound(GTSoundEntries.BATH)