Fix error in duration of packing flax

Potential cause of server crash

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>
This commit is contained in:
GameStar 2025-12-14 22:07:11 -06:00 committed by GitHub
parent 18e2113366
commit 389c084ee5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -116,14 +116,14 @@ function registerTFGClothRecipes(event) {
event.recipes.gtceu.packer('tfg:packer/flax_bundle')
.itemInputs('9x tfg:flax_product')
.itemOutputs('tfg:flax_bundle')
.duration('100')
.duration(100)
.EUt(GTValues.VA[GTValues.ULV])
event.shapeless('1x tfg:bundled_scraped_flax', ['9x tfg:flax_waste'])
event.recipes.gtceu.packer('tfg:packer/bundled_scraped_flax')
.itemInputs('9x tfg:flax_waste')
.itemOutputs('tfg:bundled_scraped_flax')
.duration('100')
.duration(100)
.EUt(GTValues.VA[GTValues.ULV])
event.recipes.tfc.scraping(
@ -252,4 +252,4 @@ function registerTFGClothRecipes(event) {
.duration(100)
.EUt(4)
//#endregion
}
}