Skip to content

Commit f5afbad

Browse files
committed
Fixed global assignment
1 parent 6fdde9d commit f5afbad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

monarch/monarch.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ process_queue = function()
108108
log("queue() busy")
109109
return
110110
end
111-
action = table.remove(queue, 1)
111+
local action = table.remove(queue, 1)
112112
if not action then
113113
log("queue() empty")
114114
return

0 commit comments

Comments
 (0)