diff --git a/CHANGELOG.md b/CHANGELOG.md index 131c522fe..1a37cacf1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ - Added assembler recipes for railgun buses (#2119) @Xtrial-01 - Changed Salvos to use Phenol instead of Aminophenol (#2119) @Xtrial-01 - The teleporting between the Beneath and the Overworld should now only replace collapsible blocks with air (instead of everything), and will give 30 sec of slow fall and fire protection @Pyritie +- Added tortilla chips, tomato sauce, salsa, and shredded cheese to the meal bag tag @Pyritie ### Bug fixes - Fixed part of the tungsten processing loop giving way too much salt (#2095) @Redeix - Fixed basic super tanks so you can now left/right click with them in GUIs like you can with the others (#2100) @jurrejelle diff --git a/kubejs/server_scripts/sacksnstuff/tags.js b/kubejs/server_scripts/sacksnstuff/tags.js index 9256bf4d9..99e479d13 100644 --- a/kubejs/server_scripts/sacksnstuff/tags.js +++ b/kubejs/server_scripts/sacksnstuff/tags.js @@ -40,5 +40,6 @@ function registerSNSItemTags(event) { event.remove('sns:prevented_in_burlap_sack', '#tfc:small_ore_pieces') event.remove('sns:prevented_in_leather_sack', '#tfc:small_ore_pieces') - + // Remove this tag to avoid confusion with the other lunchbox + event.removeAll('sns:lunchbox_food') } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index 960743d3e..dcb09bde2 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -306,6 +306,10 @@ const registerTFGItemTags = (event) => { 'firmalife:food/cooked_pasta', 'firmalife:food/pasta_with_tomato_sauce', 'firmalife:food/cooked_rice_noodles', + 'firmalife:food/tortilla_chips', + 'firmalife:food/shredded_cheese', + 'firmalife:food/salsa', + 'firmalife:food/tomato_sauce', 'tfg:roasted_sunflower_seeds', 'tfg:food/cooked_dino_nugget' ];