Fix some huge mushroom placement issues

This commit is contained in:
Wuzzy 2017-08-31 18:17:20 +02:00
parent a4363b975d
commit e2ac0c79ee
1 changed files with 14 additions and 12 deletions

View File

@ -1162,57 +1162,59 @@ local function register_decorations()
}) })
--Huge Brown Mushroom -- Huge Brown Mushroom
minetest.register_decoration({ minetest.register_decoration({
deco_type = "schematic", deco_type = "schematic",
place_on = {"mcl_core:mycelium", "mcl_core:mycelium_snow"}, place_on = { "mcl_core:dirt_with_grass", "mcl_core:dirt" },
sidelen = 80, sidelen = 80,
fill_ratio = 0.0001, fill_ratio = 0.0001,
-- FIXME: Should be roofed forest, but placing it there doesn't work well (leaves often go into mushroom)
biomes = { "deciduous_forest" }, biomes = { "deciduous_forest" },
y_min = mcl_vars.mg_overworld_min, y_min = mcl_vars.mg_overworld_min,
y_max = mcl_vars.mg_overworld_max, y_max = mcl_vars.mg_overworld_max,
schematic = minetest.get_modpath("mcl_mushrooms").."/schematics/mcl_mushrooms_huge_brown.mts", schematic = minetest.get_modpath("mcl_mushrooms").."/schematics/mcl_mushrooms_huge_brown.mts",
flags = "place_center_x", flags = "place_center_x, place_center_z",
rotation = "random", rotation = "random",
}) })
minetest.register_decoration({ minetest.register_decoration({
deco_type = "schematic", deco_type = "schematic",
place_on = {"mcl_core:mycelium", "mcl_core:mycelium_snow"}, place_on = { "mcl_core:mycelium" },
sidelen = 80, sidelen = 80,
fill_ratio = 0.002, fill_ratio = 0.002,
biomes = {"mushroom", "mushroom_cold"}, biomes = { "mushroom" },
y_min = mcl_vars.mg_overworld_min, y_min = mcl_vars.mg_overworld_min,
y_max = mcl_vars.mg_overworld_max, y_max = mcl_vars.mg_overworld_max,
schematic = minetest.get_modpath("mcl_mushrooms").."/schematics/mcl_mushrooms_huge_brown.mts", schematic = minetest.get_modpath("mcl_mushrooms").."/schematics/mcl_mushrooms_huge_brown.mts",
flags = "place_center_x", flags = "place_center_x, place_center_z",
rotation = "random", rotation = "random",
}) })
--Huge Red Mushroom -- Huge Red Mushroom
minetest.register_decoration({ minetest.register_decoration({
deco_type = "schematic", deco_type = "schematic",
place_on = { "mcl_core:dirt_with_grass"}, place_on = { "mcl_core:dirt_with_grass", "mcl_core:dirt" },
sidelen = 50, sidelen = 50,
fill_ratio = 0.0001, fill_ratio = 0.0001,
-- FIXME: Should be roofed forest, but placing it there doesn't work well (leaves often go into mushroom)
biomes = { "deciduous_forest" }, biomes = { "deciduous_forest" },
y_min = mcl_vars.mg_overworld_min, y_min = mcl_vars.mg_overworld_min,
y_max = mcl_vars.mg_overworld_max, y_max = mcl_vars.mg_overworld_max,
schematic = minetest.get_modpath("mcl_mushrooms").."/schematics/mcl_mushrooms_huge_red.mts", schematic = minetest.get_modpath("mcl_mushrooms").."/schematics/mcl_mushrooms_huge_red.mts",
flags = "place_center_x", flags = "place_center_x, place_center_z",
rotation = "random", rotation = "random",
}) })
minetest.register_decoration({ minetest.register_decoration({
deco_type = "schematic", deco_type = "schematic",
place_on = { "mcl_core:mycelium", "mcl_core:mycelium_snow" }, place_on = { "mcl_core:mycelium" },
sidelen = 50, sidelen = 50,
fill_ratio = 0.002, fill_ratio = 0.002,
biomes = { "mushroom", "mushroom_cold" }, biomes = { "mushroom" },
y_min = mcl_vars.mg_overworld_min, y_min = mcl_vars.mg_overworld_min,
y_max = mcl_vars.mg_overworld_max, y_max = mcl_vars.mg_overworld_max,
schematic = minetest.get_modpath("mcl_mushrooms").."/schematics/mcl_mushrooms_huge_red.mts", schematic = minetest.get_modpath("mcl_mushrooms").."/schematics/mcl_mushrooms_huge_red.mts",
flags = "place_center_x", flags = "place_center_x, place_center_z",
rotation = "random", rotation = "random",
}) })