Bugfix/fix birch and maple sugar recipe conflict (#1944)

* Removed crafting recipe for turning suryp into sugar directly

* Added sealed barrel recipe for turning syrup into sugar

* Removed added lines from lang file
This commit is contained in:
Johannes 2025-10-02 22:19:58 +02:00 committed by GitHub
parent 38eb2d70e5
commit fc7b7372bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,6 +16,11 @@ const registerAFCRecipes = (event) => {
event.remove({ id: "afc:pot/rubber" })
event.remove({ id: "afc:tree_tapping/hevea_latex" })
event.remove({ id: "afc:tree_tapping/rubber_fig_latex" })
event.remove({ id: "afc:crafting/1_birch_sugar"})
event.remove({ id: "afc:crafting/1_maple_sugar"})
event.remove({ id: "afc:crafting/0_birch_sugar_bucket"})
event.remove({ id: "afc:crafting/0_maple_sugar_bucket"})
// #endregion
@ -366,6 +371,20 @@ const registerAFCRecipes = (event) => {
.duration(20*12)
.EUt(GTValues.VHA[GTValues.ULV])
// Syrup into sugar
event.recipes.tfc.barrel_sealed(24000)
.inputFluid(Fluid.of('afc:maple_syrup', 100))
.outputItem('afc:maple_sugar')
.id('tfg:barrel/maple_syrup_to_sugar')
event.recipes.tfc.barrel_sealed(24000)
.inputFluid(Fluid.of('afc:birch_syrup', 100))
.outputItem('afc:birch_sugar')
.id('tfg:barrel/birch_syrup_to_sugar')
// Stripped logs
global.AFC_WOOD_TYPES.forEach(wood => {