summaryrefslogtreecommitdiff
path: root/mapgen.lua
diff options
context:
space:
mode:
Diffstat (limited to 'mapgen.lua')
-rw-r--r--mapgen.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/mapgen.lua b/mapgen.lua
index 9744584..b9ce6d0 100644
--- a/mapgen.lua
+++ b/mapgen.lua
@@ -1,8 +1,6 @@
local mg_params = minetest.get_mapgen_params()
-if mg_params.mgname == "v6" then
- -- not supported at this point
-elseif mg_params.mgname ~= "singlenode" then
+if mg_params.mgname ~= "v6" and mg_params.mgname ~= "singlenode" then
minetest.register_decoration({
deco_type = "simple",
place_on = { "default:dirt_with_grass" },