From 52939884c6061b6897545961ca3c951dac161600 Mon Sep 17 00:00:00 2001 From: GameStar <56610486+BlueBoat29@users.noreply.github.com> Date: Sun, 21 Sep 2025 11:30:12 -0500 Subject: [PATCH] bug fix for sack items (#1871) * stuff * all the stuff * Update CHANGELOG.md Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * fix inconsistent tags for sacks * Update CHANGELOG.md Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Update CHANGELOG.md Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Update CHANGELOG.md Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> --------- Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> --- CHANGELOG.md | 1 + kubejs/server_scripts/sacksnstuff/tags.js | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 573e689a5..c63d8dd92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ - Fixed some EMI rendering issues on 4x GUI scales and low screen resolutions (#1830) @Newlumberjack-sys - Fixed not being able to melt mortars and crowbars (#1837) @Newlumberjack-sys - Fixed problems with moss carpet into biomass (#1842) @Nashy1232 +- Fixed inconsistencies with tags on sacks (#1820) @BlueBoat29 ### Translation updates - Chinese (simplified) @jmecn diff --git a/kubejs/server_scripts/sacksnstuff/tags.js b/kubejs/server_scripts/sacksnstuff/tags.js index f48550663..a4389df93 100644 --- a/kubejs/server_scripts/sacksnstuff/tags.js +++ b/kubejs/server_scripts/sacksnstuff/tags.js @@ -24,4 +24,21 @@ function registeSNSItemTags(event) { event.add('sns:allowed_in_ore_sack', '#tfc:metamorphic_rock') event.add('sns:allowed_in_ore_sack', '#tfg:igneous_intrusive_rock') event.add('sns:allowed_in_ore_sack', '#tfc:igneous_extrusive_rock') + + event.add('sns:prevented_in_item_containers', '#tfc:fired_vessels') + + event.add('sns:prevented_in_frame_pack','sophisticatedbackpacks:backpack') + event.add('sns:prevented_in_frame_pack','sophisticatedbackpacks:iron_backpack') + event.add('sns:prevented_in_frame_pack','sophisticatedbackpacks:gold_backpack') + event.add('sns:prevented_in_frame_pack','sophisticatedbackpacks:diamond_backpack') + event.add('sns:prevented_in_frame_pack','sophisticatedbackpacks:netherite_backpack') + + event.remove('sns:prevented_in_straw_basket', '#tfc:ore_pieces') + event.remove('sns:prevented_in_burlap_sack', '#tfc:ore_pieces') + event.remove('sns:prevented_in_leather_sack', '#tfc:ore_pieces') + event.remove('sns:prevented_in_straw_basket', '#tfc:small_ore_pieces') + event.remove('sns:prevented_in_burlap_sack', '#tfc:small_ore_pieces') + event.remove('sns:prevented_in_leather_sack', '#tfc:small_ore_pieces') + + } \ No newline at end of file