Skip to content

Commit 83c2a88

Browse files
committedJul 24, 2015
Flowers: Keep mushrooms above water level
1 parent e7def5d commit 83c2a88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎mods/flowers/mapgen.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ end
2020
local function register_mushroom(name)
2121
minetest.register_decoration({
2222
deco_type = "simple",
23-
place_on = {"default:dirt_with_grass", "default:dirt"},
23+
place_on = {"default:dirt_with_grass"},
2424
sidelen = 16,
2525
noise_params = {
2626
offset = 0,
@@ -30,7 +30,7 @@ local function register_mushroom(name)
3030
octaves = 3,
3131
persist = 0.6
3232
},
33-
y_min = -31000,
33+
y_min = 1,
3434
y_max = 30,
3535
decoration = "flowers:"..name,
3636
})

0 commit comments

Comments
 (0)
Please sign in to comment.