Adjust mushroom growth.

This commit is contained in:
Duane 2016-07-24 23:49:49 -05:00
parent 14774dfe3f
commit df1e490a9e

View file

@ -583,7 +583,7 @@ local huge_mushroom_cap_node = {name = 'fun_caves:huge_mushroom_cap'}
minetest.register_abm({ minetest.register_abm({
nodenames = {"fun_caves:giant_mushroom_stem"}, nodenames = {"fun_caves:giant_mushroom_stem"},
interval = 2 * time_factor, interval = 2 * time_factor,
chance = 75, chance = 150,
action = function(pos, node) action = function(pos, node)
if not (pos and node) then if not (pos and node) then
return return
@ -638,7 +638,7 @@ local giant_mushroom_stem_node = {name = 'fun_caves:giant_mushroom_stem'}
minetest.register_abm({ minetest.register_abm({
nodenames = mushrooms, nodenames = mushrooms,
interval = 5 * time_factor, interval = 5 * time_factor,
chance = 375, chance = 750,
action = function(pos, node) action = function(pos, node)
if not (pos and node) then if not (pos and node) then
return return
@ -672,7 +672,7 @@ local giant_mushroom_cap_node = {name = "fun_caves:giant_mushroom_cap"}
minetest.register_abm({ minetest.register_abm({
nodenames = {"fun_caves:huge_mushroom_cap"}, nodenames = {"fun_caves:huge_mushroom_cap"},
interval = 9 * time_factor, interval = 9 * time_factor,
chance = 1000, chance = 2000,
action = function(pos, node) action = function(pos, node)
if not (pos and node) then if not (pos and node) then
return return