changed the sugars recipe to just work for everything

This commit is contained in:
Pyritie 2025-06-01 18:24:11 +01:00
parent d83a774a63
commit 08b8cf7f1c
5 changed files with 5 additions and 4 deletions

View file

@ -17,6 +17,8 @@
- Fixed being able to dupe materials by crafting tools and then recycling them (#1100) @Pyritie
- Fixed issue where "melts into" tooltips and certain timers on Jade were missing (#1102) @Xikaro
- Added Wine utensils recipes for GT (#1111) @JeanRdS
- Fixed kaolin clay duping (#1099) @SpicyNoodle5
- Fixed TFC sugar recipes so they can now use any sugar (#1099) @SpicyNoodle5
## [0.9.9] - 30.05.2025
### Changes

View file

@ -946,7 +946,6 @@ const registerGTCEURecipes = (event) => {
event.replaceInput({ id: 'gtceu:shaped/note_block' }, 'minecraft:iron_bars', '#tfg:metal_bars')
event.replaceInput({ id: 'gtceu:shaped/note_block' }, 'gtceu:wood_plate', '#tfc:lumber')
event.replaceInput({ mod: 'gtceu' }, 'minecraft:sugar', '#tfg:sugars')
event.replaceInput({ mod: 'gtceu' }, 'minecraft:string', '#forge:string')
event.recipes.gtceu.fluid_solidifier('tfg:solidify_glue')

View file

@ -642,4 +642,6 @@ function removeGTCEURecipes(event) {
event.remove({ id: 'gtceu:centrifuge/decomposition_centrifuging__fireclay' })
event.remove({ id: 'gtceu:smelting/sticky_resin_from_slime' })
event.remove({ id: 'gtceu:wiremill/string_from_polycaprolactam' })
}

View file

@ -332,6 +332,4 @@ const registerTFCRecipes = (event) => {
'#forge:tools/hammers',
'#forge:tools/saws'
]).id('tfc:shapeless/jar_lid')
event.replaceInput({ mod: 'tfc' }, 'minecraft:sugar', '#tfg:sugars')
}

View file

@ -6,7 +6,7 @@
*/
function registerTFGMiscellaneousRecipes(event) {
event.remove({ id: 'gtceu:wiremill/string_from_polycaprolactam' })
event.replaceInput({}, 'minecraft:sugar', '#tfg:sugars')
//tfc:moss
event.replaceInput({}, 'minecraft:vine', '#tfc:moss')