From cf9cfea10810517b1095fc035c487c8604ef5ae9 Mon Sep 17 00:00:00 2001 From: cora Date: Sat, 15 Oct 2022 02:42:18 +0200 Subject: [PATCH] Don't automatically grow nether fungus --- mods/ITEMS/mcl_crimson/init.lua | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/mods/ITEMS/mcl_crimson/init.lua b/mods/ITEMS/mcl_crimson/init.lua index 6f2e48a05..b225ab142 100644 --- a/mods/ITEMS/mcl_crimson/init.lua +++ b/mods/ITEMS/mcl_crimson/init.lua @@ -549,33 +549,3 @@ mcl_dye.register_on_bone_meal_apply(function(pt,user) spread_nether_plants(pt.under,node) end end) - -minetest.register_abm({ - label = "mcl_crimson:crimson_fungus", - nodenames = {"mcl_crimson:crimson_fungus"}, - interval = 11, - chance = 128, - action = function(pos) - local nodepos = minetest.get_node(vector.offset(pos, 0, -1, 0)) - if nodepos.name == "mcl_crimson:crimson_nylium" or nodepos.name == "mcl_nether:netherrack" then - if pos.y < -28400 then - generate_crimson_tree(pos) - end - end - end -}) - -minetest.register_abm({ - label = "mcl_crimson:warped_fungus", - nodenames = {"mcl_crimson:warped_fungus"}, - interval = 11, - chance = 128, - action = function(pos) - local nodepos = minetest.get_node(vector.offset(pos, 0, -1, 0)) - if nodepos.name == "mcl_crimson:warped_nylium" or nodepos.name == "mcl_nether:netherrack" then - if pos.y < -28400 then - generate_warped_tree(pos) - end - end - end -})