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:
parent
c5bb515fa5
commit
a608c8955c
5 changed files with 12 additions and 1 deletions
|
|
@ -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')
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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'],
|
||||
|
|
|
|||
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue