Adjust mushroom growth.
This commit is contained in:
parent
14774dfe3f
commit
df1e490a9e
1 changed files with 3 additions and 3 deletions
6
abms.lua
6
abms.lua
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue