From a2cff6de744ba9a8e9cb9dacedbe29958d02e6bb Mon Sep 17 00:00:00 2001 From: RabbitTV <154371299+RabbitTV22@users.noreply.github.com> Date: Tue, 1 Jul 2025 14:19:46 -0400 Subject: [PATCH 1/2] Update is_dark_oak_replaceable.tesf --- structures/vegetation/trees/is_dark_oak_replaceable.tesf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/structures/vegetation/trees/is_dark_oak_replaceable.tesf b/structures/vegetation/trees/is_dark_oak_replaceable.tesf index 0d4ff28ca..f2f4f2aa9 100644 --- a/structures/vegetation/trees/is_dark_oak_replaceable.tesf +++ b/structures/vegetation/trees/is_dark_oak_replaceable.tesf @@ -1,6 +1,7 @@ str blockID = getBlock(0, 0, 0); if (blockID != "minecraft:air" && blockID != "minecraft:dark_oak_leaves" && + blockID != "minecraft:dark_oak_sapling" && blockID != "minecraft:dark_oak_log") { fail; -} \ No newline at end of file +} From ca6858ce31a61b9c327f4f54bb0774f86b93a749 Mon Sep 17 00:00:00 2001 From: RabbitTV <154371299+RabbitTV22@users.noreply.github.com> Date: Tue, 1 Jul 2025 14:20:19 -0400 Subject: [PATCH 2/2] Update is_pale_oak_replaceable.tesf --- structures/vegetation/trees/is_pale_oak_replaceable.tesf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/structures/vegetation/trees/is_pale_oak_replaceable.tesf b/structures/vegetation/trees/is_pale_oak_replaceable.tesf index dc4cc4ab5..42e27b5a3 100644 --- a/structures/vegetation/trees/is_pale_oak_replaceable.tesf +++ b/structures/vegetation/trees/is_pale_oak_replaceable.tesf @@ -1,6 +1,7 @@ str blockID = getBlock(0, 0, 0); if (blockID != "minecraft:air" && blockID != "minecraft:pale_oak_leaves" && + blockID != "minecraft:pale_oak_sapling" && blockID != "minecraft:pale_oak_log") { fail; -} \ No newline at end of file +}