From ef7bd43829b5e68008c5067802084e0af506f7ed Mon Sep 17 00:00:00 2001
From: Paramat <paramat@users.noreply.github.com>
Date: Tue, 10 Jul 2018 03:51:41 +0100
Subject: [PATCH] Remove coral air-death ABM

---
 mods/default/functions.lua | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/mods/default/functions.lua b/mods/default/functions.lua
index 5dd0d2c..d951e8e 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.