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>
This commit is contained in:
GameStar 2025-09-21 11:30:12 -05:00 committed by GitHub
parent ece6bbca76
commit 52939884c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 18 additions and 0 deletions

View file

@ -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

View file

@ -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')
}