diff --git a/kubejs/server_scripts/ad_astra/tags.js b/kubejs/server_scripts/ad_astra/tags.js index 86bc78a1f..a48b9fbb9 100644 --- a/kubejs/server_scripts/ad_astra/tags.js +++ b/kubejs/server_scripts/ad_astra/tags.js @@ -109,6 +109,10 @@ const registerAdAstraItemTags = (event) => { event.add('tfc:compost_greens', 'ad_astra:aeronos_cap') event.add('tfc:compost_greens', 'ad_astra:strophar_cap') + + // these are log tags + event.remove('ad_astra:aeronos_caps', 'ad_astra:aeronos_cap') + event.remove('ad_astra:strophar_caps', 'ad_astra:strophar_cap') global.AD_ASTRA_WOOD.forEach(wood => { diff --git a/kubejs/server_scripts/tfg/recipes.paper.js b/kubejs/server_scripts/tfg/recipes.paper.js index fd5f22c95..b552a6e6b 100644 --- a/kubejs/server_scripts/tfg/recipes.paper.js +++ b/kubejs/server_scripts/tfg/recipes.paper.js @@ -60,6 +60,9 @@ function registerTFGPapermakingRecipes(event) { .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') @@ -68,6 +71,9 @@ function registerTFGPapermakingRecipes(event) { .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 => {