summaryrefslogtreecommitdiff
path: root/mapgen_v7n.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2015-11-18 09:36:37 +0000
committerTenPlus1 <kinsellaja@yahoo.com>2015-11-18 09:36:37 +0000
commit281010fb8c46f95effbe450c9bb5997d664ef2ab (patch)
tree7d78000b49673396b5045c3b2e06f5147e2327fb /mapgen_v7n.lua
parentb88d8e902c899077e250fd64db7eb0563b916167 (diff)
Changed waterlily schematic for sand
Diffstat (limited to 'mapgen_v7n.lua')
-rw-r--r--mapgen_v7n.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/mapgen_v7n.lua b/mapgen_v7n.lua
index a9cabe1..c70a520 100644
--- a/mapgen_v7n.lua
+++ b/mapgen_v7n.lua
@@ -11,6 +11,7 @@ dofile(path.."banana_tree.lua")
dofile(path.."bamboo_tree.lua")
dofile(path.."birch_tree.lua")
dofile(path.."bush.lua")
+dofile(path.."waterlily.lua")
--= Biomes (Minetest 0.4.13 and above)
@@ -1033,7 +1034,7 @@ end
if minetest.registered_nodes["flowers:waterlily"] then
minetest.register_decoration({
deco_type = "schematic",
- place_on = {"default:sand", "default:dirt"},
+ place_on = {"default:sand"},
sidelen = 16,
noise_params = {
offset = -0.12,
@@ -1049,7 +1050,7 @@ if minetest.registered_nodes["flowers:waterlily"] then
},
y_min = 0,
y_max = 0,
- schematic = minetest.get_modpath("flowers").."/schematics/waterlily.mts",
+ schematic = ethereal.waterlily,
rotation = "random",
})
end