This commit is contained in:
Pyritie 2026-02-02 17:46:54 +00:00
parent 8a46a01b7c
commit 4c208a0928
3 changed files with 4 additions and 1 deletions

View file

@ -80,6 +80,7 @@
- All tools should now have TFC damage types (#2868) @Pyritie
- Added recipes for advanced GTCEu Terminals @TomPlop
- TFC magma blocks, lightblooms, and bulbkins now correctly have emissive textures @Pyritie
- Quivers can now also go in the belt curios slot (#2927) @Pyritie
### Bug fixes
- Fixed large miners not outputting crushed ore when mining Migmatite @Pyritie
- Fixed red granite ores never dropping poor or rich raw ores @Pyritie

View file

@ -45,4 +45,6 @@ function registerSNSItemTags(event) {
// Remove this tag to avoid confusion with the other lunchbox
event.removeAll('sns:lunchbox_food')
event.add('curios:belt', 'sns:quiver');
}

View file

@ -105,5 +105,5 @@ function registerTFGRailgunItemTags(event) {
event.add('tfg:cannot_launch_in_railgun', 'gtceu:zpm_quantum_tank')
event.add('tfg:cannot_launch_in_railgun', 'gtceu:uv_quantum_tank')
event.add('tfg:cannot_launch_in_railgun', 'gtceu:uhv_quantum_tank')
event.add('tfg:cannot_launch_in_railgun', 'toolbelt:belt')
}