Food n' Bags Bug Fixing Compilation (#1967)
* oops I might've hit space and made linux upset mb gang * > metal bar > look inside > not a metal bar * sns is a mess huh * sns is a mess huh (fixed sns and sophisticated backpack stuff) * hot potato (pun intended) * made bulbkin pie not allergic to firmalife ovens
This commit is contained in:
parent
58f5ca6927
commit
d45e2f164a
5 changed files with 10 additions and 2 deletions
|
|
@ -33,7 +33,7 @@
|
||||||
slotCap = 64
|
slotCap = 64
|
||||||
#The maximum item size allowed in the container
|
#The maximum item size allowed in the container
|
||||||
#Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE
|
#Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE
|
||||||
allowedSize = "VERY_LARGE"
|
allowedSize = "NORMAL"
|
||||||
|
|
||||||
["Container Item Config"."Burlap Sack"]
|
["Container Item Config"."Burlap Sack"]
|
||||||
#Determines if this container will automatically pickup items
|
#Determines if this container will automatically pickup items
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
#Server Settings
|
#Server Settings
|
||||||
[server]
|
[server]
|
||||||
#List of items that are not allowed to be put in backpacks - e.g. "minecraft:shulker_box"
|
#List of items that are not allowed to be put in backpacks - e.g. "minecraft:shulker_box"
|
||||||
disallowedItems = []
|
disallowedItems = ["sns:frame_pack", "sns:burlap_sack"]
|
||||||
#Determines if container items (those that override canFitInsideContainerItems to false) are able to fit in backpacks
|
#Determines if container items (those that override canFitInsideContainerItems to false) are able to fit in backpacks
|
||||||
containerItemsDisallowed = false
|
containerItemsDisallowed = false
|
||||||
#List of blocks that inventory interaction upgrades can't interact with - e.g. "minecraft:shulker_box"
|
#List of blocks that inventory interaction upgrades can't interact with - e.g. "minecraft:shulker_box"
|
||||||
|
|
|
||||||
|
|
@ -54,4 +54,6 @@ function registerBetterEndRecipes(event) {
|
||||||
|
|
||||||
generateGreenHouseRecipe(event, '8x betterend:shadow_berry_seeds', 'tfg:semiheavy_ammoniacal_water', 8000,
|
generateGreenHouseRecipe(event, '8x betterend:shadow_berry_seeds', 'tfg:semiheavy_ammoniacal_water', 8000,
|
||||||
'24x betterend:shadow_berry_product', 'shadow_berry', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV])
|
'24x betterend:shadow_berry_product', 'shadow_berry', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV])
|
||||||
|
|
||||||
|
event.recipes.firmalife.oven('betterend:cave_pumpkin_pie_raw', 400, 60 * 20, 'betterend:cave_pumpkin_pie')
|
||||||
}
|
}
|
||||||
|
|
@ -24,6 +24,9 @@ const registerTFCHeats = (event) => {
|
||||||
event.itemHeat('tfc:groundcover/seaweed', 1.0, null, null)
|
event.itemHeat('tfc:groundcover/seaweed', 1.0, null, null)
|
||||||
event.itemHeat('tfc:plant/leafy_kelp', 1.0, null, null)
|
event.itemHeat('tfc:plant/leafy_kelp', 1.0, null, null)
|
||||||
event.itemHeat('tfc:plant/winged_kelp', 1.0, null, null)
|
event.itemHeat('tfc:plant/winged_kelp', 1.0, null, null)
|
||||||
|
|
||||||
|
// Baked Potato
|
||||||
|
event.itemHeat('tfc:food/baked_potato', 1.0, null, null)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,9 @@ function registerTFGHeatData(event) {
|
||||||
event.itemHeat("tfg:sunflower_product", 1, null, null);
|
event.itemHeat("tfg:sunflower_product", 1, null, null);
|
||||||
event.itemHeat("tfg:roasted_sunflower_seeds", 1, null, null);
|
event.itemHeat("tfg:roasted_sunflower_seeds", 1, null, null);
|
||||||
event.itemHeat("#tfc:powders", 1, null, null);
|
event.itemHeat("#tfc:powders", 1, null, null);
|
||||||
|
|
||||||
|
event.itemHeat('betterend:cave_pumpkin_pie_raw', 1.0, null, null);
|
||||||
|
event.itemHeat('betterend:cave_pumpkin_pie', 1.0, null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @param {Internal.TFCDataEventJS} event */
|
/** @param {Internal.TFCDataEventJS} event */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue