Quick Fixes (#1310)

* - Yeast recipe conflict fix

* - Fixed seed oil voiding in barrels. And item weight inconsistency.

* - Reduced loading screen logo size by 4MB

* - Update Changelog
This commit is contained in:
Redeix 2025-07-13 17:29:38 -05:00 committed by GitHub
parent c5bb515fa5
commit a608c8955c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 12 additions and 1 deletions

View file

@ -42,6 +42,9 @@ const registerTFGItemSize = (event) => {
event.itemSize('tfg:fishing_net/tin_alloy', 'large', 'medium', 'tin_alloy_fishing_net')
event.itemSize('tfg:fishing_net/magnalium', 'large', 'medium', 'magnalium_fishing_net')
event.itemSize('tfg:rapeseed_product', 'small', 'light', 'rapeseed_product')
event.itemSize('tfg:sunflower_product', 'small', 'light', 'sunflower_product')
}

View file

@ -642,7 +642,7 @@ function registerTFGFoodRecipes(event) {
}).inputFluids(JsonIO.of({ amount: 1000, value: { tag: "tfg:clean_water" }}))
processorRecipe("yeast_starter", 1200, 8, {
circuit: 1,
circuit: 2,
fluidInputs: [Fluid.of('firmalife:yeast_starter', 100)],
fluidOutputs: [Fluid.of('firmalife:yeast_starter', 600)],
itemInputs: ['#tfc:foods/flour'],

View file

@ -343,6 +343,7 @@ const registerTFGBlockTags = (event) => {
// #endregion
}
//#region Fluids
const registerTFGFluidTags = (event) => {
event.add('tfc:usable_in_pot', 'tfg:latex')
@ -367,10 +368,13 @@ const registerTFGFluidTags = (event) => {
event.add('tfg:clean_water', 'tfc:river_water')
event.add('tfg:clean_water', 'tfc:spring_water')
event.add('tfc:usable_in_barrel', 'gtceu:seed_oil')
global.BREATHABLE_COMPRESSED_AIRS.forEach(x => {
event.add('tfg:breathable_compressed_air', x)
})
}
//#endregion
const registerTFGBiomeTags = (event) => {