From: Paramat Date: Tue, 10 Jul 2018 02:51:41 +0000 (+0100) Subject: Remove coral air-death ABM X-Git-Tag: 5.0.0~60 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ef7bd43829b5e68008c5067802084e0af506f7ed;p=oweals%2Fminetest_game.git Remove coral air-death ABM --- diff --git a/mods/default/functions.lua b/mods/default/functions.lua index 5dd0d2c8..d951e8e6 100644 --- a/mods/default/functions.lua +++ b/mods/default/functions.lua @@ -562,22 +562,6 @@ minetest.register_abm({ }) --- --- Coral death near air --- - -minetest.register_abm({ - nodenames = {"default:coral_brown", "default:coral_orange"}, - neighbors = {"air"}, - interval = 17, - chance = 5, - catch_up = false, - action = function(pos, node) - minetest.set_node(pos, {name = "default:coral_skeleton"}) - end, -}) - - -- -- NOTICE: This method is not an official part of the API yet. -- This method may change in future.