From 16dd9976d14c3469758593460b0b26bbd532e2ec Mon Sep 17 00:00:00 2001 From: Jordach Date: Tue, 14 Aug 2018 21:42:11 +0100 Subject: [PATCH] refactor more biome data --- mods/core/mapgen.lua | 4 ++-- mods/plants/mapgen.lua | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/mods/core/mapgen.lua b/mods/core/mapgen.lua index d16d8fb..cf9a3f0 100644 --- a/mods/core/mapgen.lua +++ b/mods/core/mapgen.lua @@ -1062,7 +1062,7 @@ minetest.register_decoration({ decoration = {"core:grass_1", "core:grass_2", "core:grass_3"}, sidelen = 16, fill_ratio = 0.2, - biomes = {"plains", "plains_forest", "plains_floral", "jungle"}, + biomes = {"plains", "plains_forest", "jungle", "highlands"}, height = 1, param2 = mcore.options("cross", true, true, false), }) @@ -1096,7 +1096,7 @@ minetest.register_decoration({ decoration = {"plants:daisy"}, sidelen = 16, fill_ratio = 0.02, - biomes = {"plains", "plains_floral"}, + biomes = {"plains", "highlands"}, height = 1, }) diff --git a/mods/plants/mapgen.lua b/mods/plants/mapgen.lua index c9d7521..8d60932 100644 --- a/mods/plants/mapgen.lua +++ b/mods/plants/mapgen.lua @@ -47,7 +47,7 @@ minetest.register_decoration({ decoration = {"plants:carnation", "plants:bells_of_terra", "plants:daylilly"}, sidelen = 80, fill_ratio = 0.001, - biomes = {"plains", "plains_forest"}, + biomes = {"plains", "plains_forest", "highlands", "jungle"}, height = 1, param2 = mcore.options("cross", true, true, false), }) @@ -60,7 +60,7 @@ minetest.register_decoration({ decoration = {"plants:bluebells", "plants:lily_of_the_dream", "plants:angelface"}, sidelen = 80, fill_ratio = 0.001, - biomes = {"plains", "plains_forest"}, + biomes = {"plains", "plains_forest", "highlands"}, height = 1, param2 = mcore.options("cross", true, true, false), }) @@ -73,7 +73,7 @@ minetest.register_decoration({ decoration = {"plants:violet", "plants:pansy", "plants:crocus"}, sidelen = 80, fill_ratio = 0.001, - biomes = {"plains", "plains_forest"}, + biomes = {"plains", "plains_forest", "jungle"}, height = 1, param2 = mcore.options("cross", true, true, false), }) @@ -86,7 +86,7 @@ minetest.register_decoration({ decoration = {"plants:lilac", "plants:allium", "plants:camellia"}, sidelen = 80, fill_ratio = 0.001, - biomes = {"plains", "plains_forest"}, + biomes = {"plains", "plains_forest", "jungle"}, height = 1, param2 = mcore.options("cross", true, true, false), }) @@ -113,7 +113,7 @@ minetest.register_decoration({ decoration = {"plants:hellebore", "plants:black_rose", "plants:daylia"}, sidelen = 80, fill_ratio = 0.001, - biomes = {"plains", "plains_forest"}, + biomes = {"plains", "plains_forest", "highlands"}, height = 1, param2 = mcore.options("cross", true, true, false), }) \ No newline at end of file