forked from Mineclonia/Mineclonia
Don't kill mushrooms on podzol and mycelium
This commit is contained in:
parent
845b5871d4
commit
ab2fb7e404
|
@ -90,12 +90,15 @@ Code based on information gathered from Minecraft Wiki
|
||||||
<http://minecraft.gamepedia.com/Tutorials/Mushroom_farming#Videos>
|
<http://minecraft.gamepedia.com/Tutorials/Mushroom_farming#Videos>
|
||||||
]]
|
]]
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
label = "Mushroom spread",
|
label = "Mushroom spread and death",
|
||||||
nodenames = {"mcl_mushrooms:mushroom_brown", "mcl_mushrooms:mushroom_red"},
|
nodenames = {"mcl_mushrooms:mushroom_brown", "mcl_mushrooms:mushroom_red"},
|
||||||
interval = 11,
|
interval = 11,
|
||||||
chance = 50,
|
chance = 50,
|
||||||
action = function(pos, node)
|
action = function(pos, node)
|
||||||
if minetest.get_node_light(pos, nil) > 12 then
|
local node_soil = minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name
|
||||||
|
-- Mushrooms uproot in light except on podzol or mycelium
|
||||||
|
if node_soil ~= "mcl_core:podzol" and node_soil ~= "mcl_core:mycelium" and
|
||||||
|
node_soil ~= "mcl_core:podzol_snow" and node_soil ~= "mcl_core:mycelium_snow" and minetest.get_node_light(pos, nil) > 12 then
|
||||||
minetest.dig_node(pos)
|
minetest.dig_node(pos)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue