fix unusable tfc stone knives that you can find in some ruins

This commit is contained in:
Pyritie 2025-12-25 17:04:51 +00:00
parent d6d73c27ab
commit c41ec4dd5f

View file

@ -369,6 +369,12 @@ function registerTFCItemTags(event) {
global.TFC_DRY_MUD_BRICKS.forEach((dryMudBrick) => {
event.add("tfc:dry_mud_bricks", dryMudBrick);
});
// Workaround for some of the ruin structures having tfc knives
event.add('tfc:knives', 'tfc:stone/knife/sedimentary')
event.add('tfc:knives', 'tfc:stone/knife/metamorphic')
event.add('tfc:knives', 'tfc:stone/knife/igneous_intrusive')
event.add('tfc:knives', 'tfc:stone/knife/igneous_extrusive')
}
/** @param {TagEvent.Block} event */