diff --git a/CHANGELOG.md b/CHANGELOG.md index 1584d75b6..60d4d58cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/kubejs/server_scripts/sacksnstuff/tags.js b/kubejs/server_scripts/sacksnstuff/tags.js index 99e479d13..bb1c9422b 100644 --- a/kubejs/server_scripts/sacksnstuff/tags.js +++ b/kubejs/server_scripts/sacksnstuff/tags.js @@ -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')