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

@ -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"),