From 8562c320b186a24ae341e78b1ee13032698e4b0f Mon Sep 17 00:00:00 2001 From: Redeix Date: Mon, 10 Nov 2025 01:56:31 -0600 Subject: [PATCH] allows saplings and fruit bushes in the seed pouch (#2202) * allows saplings and fruit bushes in the seed pouch * changelog --- CHANGELOG.md | 1 + kubejs/server_scripts/sacksnstuff/tags.js | 3 +++ 2 files changed, 4 insertions(+) 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')