Fix rocks in wasteland floating on water

This commit is contained in:
Wuzzy 2019-08-28 22:03:19 +02:00
parent 48893eb1df
commit 9d4bc87435
1 changed files with 2 additions and 2 deletions

View File

@ -753,7 +753,7 @@ minetest.register_decoration(
flags = "place_center_x, place_center_z", flags = "place_center_x, place_center_z",
schematic = minetest.get_modpath("default") schematic = minetest.get_modpath("default")
.. "/schematics/default_small_rock.mts", .. "/schematics/default_small_rock.mts",
y_min = 0, y_min = 1,
y_max = 32000, y_max = 32000,
rotation = "random", rotation = "random",
}) })
@ -768,7 +768,7 @@ minetest.register_decoration(
flags = "place_center_x, place_center_z", flags = "place_center_x, place_center_z",
schematic = minetest.get_modpath("default") schematic = minetest.get_modpath("default")
.. "/schematics/default_large_rock.mts", .. "/schematics/default_large_rock.mts",
y_min = 0, y_min = 1,
y_max = 32000, y_max = 32000,
rotation = "random", rotation = "random",
}) })