fixed smooth stone not collapsing #1732

This commit is contained in:
Pyritie
2025-09-08 16:55:57 +01:00
parent 521fc19ce5
commit 8424682586
2 changed files with 4 additions and 0 deletions

View File

@@ -33,6 +33,7 @@
- Fixed missing item in quartz sand centrifuging (#1717) @Pyritie
- Popped chorus fruit is now edible (#1722) @programmer3481
- Fixed missing sheet pile texture for cobalt, cobalt brass, aluminium silicate, invar, lead, red alloy, and tin alloy (#1713) @Pyritie
- Fixed missing collapse tags for smooth stone (#1732) @Pyritie
### Translation updates
- Chinese (simplified) @jmecn & @CN059
- Russian @Dl, @Kostabl, @Turikar42, & @But3r

View File

@@ -369,6 +369,9 @@ const registerTFCBlockTags = (event) => {
event.add('tfc:can_start_collapse', '#tfg:rock_walls')
event.add('tfc:can_trigger_collapse', '#tfg:rock_walls')
event.add('tfc:can_start_collapse', '#tfc:rock/smooth')
event.add('tfc:can_trigger_collapse', '#tfc:rock/smooth')
// Возможность обрушения руды
event.add('tfc:can_collapse', '#forge:ores')
event.add('tfc:can_start_collapse', '#forge:ores')