Fix bug allowing timegate duplication

Fixes #13
このコミットが含まれているのは:
upsilon 2020-05-10 10:09:34 +02:00
コミット 67875f9c6e
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: A80DAE1F266E1C3C
1個のファイルの変更8行の追加5行の削除

ファイルの表示

@ -25,11 +25,14 @@ local function timegate_activate(pos, node)
node.name = "moremesecons_timegate:timegate_on"
minetest.swap_node(pos, node)
mesecon.receptor_on(pos)
minetest.after(time, function(pos, node)
mesecon.receptor_off(pos)
node.name = "moremesecons_timegate:timegate_off"
minetest.swap_node(pos, node)
end, pos, node)
minetest.after(time, function()
local node = minetest.get_node(pos)
if node.name == "moremesecons_timegate:timegate_on" then
mesecon.receptor_off(pos)
node.name = "moremesecons_timegate:timegate_off"
minetest.swap_node(pos, node)
end
end)
end
boxes = {{ -6/16, -8/16, -6/16, 6/16, -7/16, 6/16 }, -- the main slab