From 145a73188cb8e600cf046c9a1031fc874b66118b Mon Sep 17 00:00:00 2001 From: sys4-fr Date: Mon, 26 Mar 2018 19:50:35 +0200 Subject: [PATCH] Update falling nodes detection in order to avoid crash --- nodes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.lua b/nodes.lua index 619e2ef..3a5089c 100644 --- a/nodes.lua +++ b/nodes.lua @@ -33,7 +33,7 @@ local trap_on_timer = function (pos, elapsed) if n and n.name then if minetest.registered_nodes[n.name]._tsm_pyramids_crack and minetest.registered_nodes[n.name]._tsm_pyramids_crack < 2 then minetest.set_node(pos, {name="tsm_pyramids:trap_2"}) - nodeupdate(pos) + minetest.check_for_falling(pos) end end end