mirror of
https://github.com/minetest/minetest_game.git
synced 2024-12-23 07:10:19 +01:00
Fireflies: Add dedicated mgv6 register_decoration
This commit is contained in:
parent
63ebdfd139
commit
c2001b3b52
@ -127,6 +127,33 @@ minetest.register_craft( {
|
|||||||
|
|
||||||
|
|
||||||
-- register fireflies as decorations
|
-- register fireflies as decorations
|
||||||
|
|
||||||
|
if minetest.get_mapgen_setting("mg_name") == "v6" then
|
||||||
|
|
||||||
|
minetest.register_decoration({
|
||||||
|
deco_type = "simple",
|
||||||
|
place_on = "default:dirt_with_grass",
|
||||||
|
place_offset_y = 2,
|
||||||
|
sidelen = 80,
|
||||||
|
fill_ratio = 0.0002,
|
||||||
|
y_max = 31000,
|
||||||
|
y_min = 1,
|
||||||
|
decoration = "fireflies:firefly",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_decoration({
|
||||||
|
deco_type = "simple",
|
||||||
|
place_on = "default:dirt_with_grass",
|
||||||
|
place_offset_y = 3,
|
||||||
|
sidelen = 80,
|
||||||
|
fill_ratio = 0.0002,
|
||||||
|
y_max = 31000,
|
||||||
|
y_min = 1,
|
||||||
|
decoration = "fireflies:firefly",
|
||||||
|
})
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "simple",
|
deco_type = "simple",
|
||||||
place_on = {
|
place_on = {
|
||||||
@ -170,3 +197,5 @@ minetest.register_decoration({
|
|||||||
y_min = -1,
|
y_min = -1,
|
||||||
decoration = "fireflies:firefly",
|
decoration = "fireflies:firefly",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user