From de5f0dbe93cbde3107c2f06cc280f5e8f08cd4cb Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Wed, 1 Jul 2020 10:11:14 +0200 Subject: [PATCH] Fix server crash on anchor placement (#67) --- technic/machines/other/anchor.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/technic/machines/other/anchor.lua b/technic/machines/other/anchor.lua index 96ed2a6..0498cc0 100644 --- a/technic/machines/other/anchor.lua +++ b/technic/machines/other/anchor.lua @@ -114,7 +114,7 @@ minetest.register_node("technic:admin_anchor", { end, action_off = function(pos) local meta = minetest.get_meta(pos) - forceload_off(pos, meta) + forceload_off(meta) end } }