1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-06-28 04:40:22 +02:00

Put y_max above y_min in mapgen registrations (#2051)

Switch y_max and y_min for flowers, fireflies and default
This commit is contained in:
Ezhh
2018-02-25 11:25:34 +00:00
committed by SmallJoker
parent 283636bfdb
commit 280f1b1c39
3 changed files with 124 additions and 124 deletions

View File

@ -144,8 +144,8 @@ minetest.register_decoration({
"rainforest",
"rainforest_swamp"
},
y_min = -1,
y_max = 31000,
y_min = -1,
decoration = "fireflies:firefly",
})
@ -166,7 +166,7 @@ minetest.register_decoration({
"rainforest",
"rainforest_swamp"
},
y_min = -1,
y_max = 31000,
y_min = -1,
decoration = "fireflies:firefly",
})