allows saplings and fruit bushes in the seed pouch (#2202)

* allows saplings and fruit bushes in the seed pouch

* changelog
This commit is contained in:
Redeix 2025-11-10 01:56:31 -06:00 committed by GitHub
parent 544a46567f
commit 8562c320b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View file

@ -16,6 +16,7 @@
- Added tfc torches and lamps to Not Enough Animations' config, so now you hold them properly @Coopmore
- Barrel Staves (for Kegs) now just use bronze screws instead of wrought iron plates @Pyritie
- Mars sandstorms are now sandier
- Saplings and fruit bushes can now enter the seed pouch. (#2202) @Redeix
### Bug fixes
- Fixed TFC bug where paths and roads can collapse on themselves when creating a staircase shape. (#2144) @Redeix
- Fixed the HV aqueous accumulator water recipe so the amount of water can actually fit in the HV machine @Pyritie

View file

@ -24,6 +24,9 @@ function registerSNSItemTags(event) {
event.add('sns:allowed_in_ore_sack', '#tfc:metamorphic_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:allowed_in_seed_pouch', '#minecraft:saplings')
event.add('sns:allowed_in_seed_pouch', '#tfc:wild_fruits')
event.add('sns:prevented_in_item_containers', '#tfc:fired_vessels')