From 3ff087f1891856372505ff968185dfce58c7315f Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 12 May 2022 15:30:20 +0200 Subject: [PATCH] Fix schematic names for sapling growth --- mods/rp_default/functions.lua | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/mods/rp_default/functions.lua b/mods/rp_default/functions.lua index 68f8665..bf0c015 100644 --- a/mods/rp_default/functions.lua +++ b/mods/rp_default/functions.lua @@ -146,7 +146,7 @@ local sapling_data = { local tree_data = { ["apple"] = { - schem = "default_appletree.mts", + schem = "rp_default_apple_tree.mts", offset = vector.new(-2, -1, -2), space = { { vector.new(0,0,0), vector.new(0,2,0) }, @@ -170,7 +170,7 @@ local tree_data = { }, }, ["oak"] = { - schem = "default_oaktree.mts", + schem = "rp_default_oak_tree.mts", offset = vector.new(-2, -1, -2), space = { { vector.new(0,0,0), vector.new(0,2,0) }, @@ -194,12 +194,7 @@ local tree_data = { }, }, ["birch"] = { - schem = "default_squaretree.mts", - replacements = { - ["rp_default:leaves"] = "rp_default:leaves_birch", - ["rp_default:tree"] = "rp_default:tree_birch", - ["rp_default:apple"] = "air" - }, + schem = "rp_default_birch_tree.mts", offset = vector.new(-1, -1, -1), space = { { vector.new(0,0,0), vector.new(0,1,0) }, @@ -223,15 +218,14 @@ local tree_data = { }, }, ["dry_bush"] = { - schem = "default_dry_bush.mts", + schem = "rp_default_dry_bush.mts", offset = vector.new(-1, -1, -1), space = { { vector.new(0,0,0), vector.new(0,1,0) }, }, }, ["dry_bush_small"] = { - schem = "default_shrub.mts", - replacements = {["default:leaves"] = "rp_default:dry_leaves"}, + schem = "rp_default_dry_bush_small.mts", offset = vector.new(-1, -1, -1), space = { { vector.new(0,0,0), vector.new(0,1,0) },