Skip to content
Snippets Groups Projects
Commit 905e8d7e authored by TenPlus1's avatar TenPlus1
Browse files

remove acacia from desert area and add big cactus from paramat

parent ecd0a23e
No related branches found
No related tags found
No related merge requests found
......@@ -504,7 +504,7 @@ end
-- redwood tree
minetest.register_decoration({
deco_type = "schematic",
place_on = {"bakedclay:red"}, --"bakedclay:orange"},
place_on = {"bakedclay:red"},
sidelen = 80,
fill_ratio = 0.01,
biomes = {"mesa"},
......@@ -648,14 +648,25 @@ minetest.register_decoration({
-- acacia tree
minetest.register_decoration({
deco_type = "schematic",
place_on = {"default:desert_sand", "default:dirt_with_dry_grass"},
place_on = {"default:dirt_with_dry_grass"},
sidelen = 80,
fill_ratio = 0.004,
biomes = {"desert", "savannah"},
biomes = {"savannah"},
schematic = path.."acaciatree.mts",
flags = "place_center_x, place_center_z",
})
-- big cactus
minetest.register_decoration({
deco_type = "schematic",
place_on = {"default:desert_sand"},
sidelen = 80,
fill_ratio = 0.004,
biomes = {"desert"},
schematic = path.."large_cactus.mts",
flags = "place_center_x, place_center_z",
})
-- big old tree
minetest.register_decoration({
deco_type = "schematic",
......
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment