Remove coral air-death ABM

This commit is contained in:
Paramat 2018-07-10 03:51:41 +01:00 committed by GitHub
parent 513609dcfd
commit ef7bd43829
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 16 deletions

View File

@ -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.