projects
/
oweals
/
minetest_game.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
513609d
)
Remove coral air-death ABM
author
Paramat
<paramat@users.noreply.github.com>
Tue, 10 Jul 2018 02:51:41 +0000
(
03:51
+0100)
committer
GitHub
<noreply@github.com>
Tue, 10 Jul 2018 02:51:41 +0000
(
03:51
+0100)
mods/default/functions.lua
patch
|
blob
|
history
diff --git
a/mods/default/functions.lua
b/mods/default/functions.lua
index 5dd0d2c8b37a8e87351a4c388293d3ce3cf79ae8..d951e8e6ccafad60bc2c802c1e5ad5d61b1bb71f 100644
(file)
--- 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.