fixes not being able to quern hardwood/softwood, removed strophar/aeronos caps from the log tag

This commit is contained in:
Pyritie 2025-08-09 00:34:06 +01:00
parent 4664e60a98
commit b0608183e9
2 changed files with 10 additions and 0 deletions

View file

@ -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 => {

View file

@ -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 => {