removed stone rods + stone gears

This commit is contained in:
Pyritie 2025-09-18 01:11:47 +01:00
parent e3f6e81e14
commit 355535daf4
2 changed files with 3 additions and 0 deletions

View file

@ -113,6 +113,8 @@ global.GTCEU_DISABLED_ITEMS = /** @type {const} */ ([
"gtceu:compressed_clay", "gtceu:compressed_clay",
"gtceu:stone_rod",
"gtceu:damascus_steel_nugget", "gtceu:damascus_steel_nugget",
"gtceu:damascus_steel_ingot", "gtceu:damascus_steel_ingot",
"gtceu:damascus_steel_block", "gtceu:damascus_steel_block",

View file

@ -93,4 +93,5 @@ const registerGTCEuTagPrefixes = (event) => {
TagPrefix.rawOreBlock.unformattedTagPath("raw_ore_blocks") TagPrefix.rawOreBlock.unformattedTagPath("raw_ore_blocks")
TagPrefix.rawOre.setIgnored(GTMaterials.Iron); TagPrefix.rawOre.setIgnored(GTMaterials.Iron);
TagPrefix.gear.setIgnored(GTMaterials.Stone);
} }