Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Silly mistake, interrupts should work better now.
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
mesecons_luacontroller/init.lua
|
@@ -151,7 +151,7 @@ local getinterrupt = function(pos) |
|
|
local interrupts = minetest.deserialize(meta:get_string("lc_interrupts")) or {} |
|
|
local found = false |
|
|
for _, i in ipairs(interrupts) do |
|
|
if minetest.serialize(i) == minetest.serialize(event.iid) then |
|
|
if minetest.serialize(i) == minetest.serialize(iid) then |
|
|
found = true |
|
|
break |
|
|
end |
|
|