Add igneous_intrusive to ore sack whitelist - fix #1891 (#1893)

* fix typo #1891

* typo function name

fix minor typo
This commit is contained in:
Jason Nash 2025-09-25 17:47:04 +01:00 committed by GitHub
parent b2b6332c0a
commit 013c26dafa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -45,7 +45,7 @@ ServerEvents.tags('item', event => {
registerRnrItemTags(event)
registerSophisticatedBackpacksItemTags(event)
registerSoulboundItemTags(event)
registeSNSItemTags(event)
registerSNSItemTags(event)
registerSpeciesItemTags(event)
registerTACZItemTags(event)
registerTFCAmbientalItemTags(event)

View file

@ -1,7 +1,7 @@
// priority: 0
"use strict";
function registeSNSItemTags(event) {
function registerSNSItemTags(event) {
global.SNS_DISABLED_ITEMS.forEach(item => {
event.removeAllTagsFrom(item)
@ -22,7 +22,7 @@ function registeSNSItemTags(event) {
event.add('sns:allowed_in_ore_sack', '#tfc:sedimentary_rock')
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_intrusive_rock')
event.add('sns:allowed_in_ore_sack', '#tfc:igneous_extrusive_rock')
event.add('sns:prevented_in_item_containers', '#tfc:fired_vessels')