10 lines
131 B
Lua
10 lines
131 B
Lua
if event.type == "program" then
|
|
mem.events = {}
|
|
end
|
|
|
|
if event.type == "digiline" then
|
|
|
|
table.insert(mem.events, event)
|
|
|
|
end
|
|
|