fix settings for giant mycelium

This commit is contained in:
FaceDeer 2019-08-12 09:26:58 -06:00
parent 99588c160f
commit eb3377fba0
2 changed files with 3 additions and 3 deletions

View File

@ -235,7 +235,7 @@ subterrane.register_layer({
columns = {
maximum_radius = 20,
minimum_radius = 5,
node = "df_mapitems:wet_flowstone",
node = "df_mapitems:wet_flowstone", --TODO: no flowstone below the Sunless Sea, replace with something else
weight = 0.5,
maximum_count = 60,
minimum_count = 10,

View File

@ -222,8 +222,8 @@ local grow_mycelium = function(pos, meristem_name)
return new_meristems
end
local min_growth_delay = minetest.settings:get_key("dfcaverns_mycelium_min_growth_delay") or 240
local max_growth_delay = minetest.settings:get_key("dfcaverns_mycelium_max_growth_delay") or 400
local min_growth_delay = minetest.settings:get("dfcaverns_mycelium_min_growth_delay") or 240
local max_growth_delay = minetest.settings:get("dfcaverns_mycelium_max_growth_delay") or 400
minetest.register_node("df_primordial_items:giant_hypha_apical_meristem", {
description = S("Giant Hypha Apical Meristem"),