3
0
mirror of https://github.com/britzl/monarch.git synced 2025-09-27 10:02:21 +02:00

Fixed global assignment

This commit is contained in:
Björn Ritzl
2023-02-09 23:38:53 +01:00
parent 6fdde9d2a8
commit f5afbad233

View File

@@ -108,7 +108,7 @@ process_queue = function()
log("queue() busy") log("queue() busy")
return return
end end
action = table.remove(queue, 1) local action = table.remove(queue, 1)
if not action then if not action then
log("queue() empty") log("queue() empty")
return return