From 1886acaebce48e47dc267a4d8296558963c3b6a9 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 3 Feb 2026 20:42:28 +0000 Subject: [PATCH] fix paper for nebby --- CHANGELOG.md | 6 +++++- kubejs/server_scripts/tfg/primitive/recipes.paper.js | 11 ++--------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d0762661..6688a2d4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,12 @@ ## Unreleased ### Changes +- Added EV laser hatches! @TomPlop +- Removed the logs to wood dust quern recipes as originally intended @Pyritie ### Bug fixes -- Fixed all the missing crafting table saw recipes (#2967) +- Fixed all the missing crafting table saw recipes (#2967) @Pyritie +- Fixed not being able to send crafting requests to your AE2 network with the interdimensional wireless card @Mqrius +- Fixed the hydroponics facility, pisciculture fishery, and growth chamber's missing overclocks @TomPlop ### Translation updates ## [0.11.19] - 03-02-2026 diff --git a/kubejs/server_scripts/tfg/primitive/recipes.paper.js b/kubejs/server_scripts/tfg/primitive/recipes.paper.js index 9fba0ec9e..372ad7595 100644 --- a/kubejs/server_scripts/tfg/primitive/recipes.paper.js +++ b/kubejs/server_scripts/tfg/primitive/recipes.paper.js @@ -77,25 +77,18 @@ function registerTFGPapermakingRecipes(event) { // Create macerator recipes for softwood event.recipes.gtceu.macerator('macerate_softwood') .itemInputs('#tfg:softwood') - .itemOutputs('6x gtceu:wood_dust') + .itemOutputs('4x gtceu:wood_dust') .chancedOutput('gtceu:wood_dust', 8000, 680) .duration(70) .EUt(2) - event.recipes.tfc.quern('4x gtceu:wood_dust', '#tfg:softwood') - .id('tfg:quern/softwood_dust') - - //Create identical macerator recipe for hardwood event.recipes.gtceu.macerator('macerate_hardwood') .itemInputs('#tfg:hardwood') - .itemOutputs('6x gtceu:hardwood_dust') + .itemOutputs('4x gtceu:hardwood_dust') .chancedOutput('gtceu:hardwood_dust', 8000, 680) .duration(70) .EUt(2) - event.recipes.tfc.quern('4x gtceu:hardwood_dust', '#tfg:hardwood') - .id('tfg:quern/hardwood_dust') - //Replace any recipe that outputs wood dust to use hardwood dust if it's ID string contains the name of one of the hardwood types. //This absolutely fuckin sucks but it works event.forEachRecipe({ output: 'gtceu:wood_dust' }, r => {