From 9d4bc87435e03ca6434469c5a8873da53144d997 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 28 Aug 2019 22:03:19 +0200 Subject: [PATCH] Fix rocks in wasteland floating on water --- mods/default/mapgen.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/default/mapgen.lua b/mods/default/mapgen.lua index d4515f6..b5935ef 100644 --- a/mods/default/mapgen.lua +++ b/mods/default/mapgen.lua @@ -753,7 +753,7 @@ minetest.register_decoration( flags = "place_center_x, place_center_z", schematic = minetest.get_modpath("default") .. "/schematics/default_small_rock.mts", - y_min = 0, + y_min = 1, y_max = 32000, rotation = "random", }) @@ -768,7 +768,7 @@ minetest.register_decoration( flags = "place_center_x, place_center_z", schematic = minetest.get_modpath("default") .. "/schematics/default_large_rock.mts", - y_min = 0, + y_min = 1, y_max = 32000, rotation = "random", })