This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Cyclonit's profile picture

os.queueEvent drops tables when used as parameters.

Started by Cyclonit, 09 December 2012 - 08:20 AM
Cyclonit #1
Posted 09 December 2012 - 09:20 AM
Hi,

code like this:

os.queueEvent("test", {"test", 1, 2, 3})
print(os.pullEvent())

shows that tables are not being added to the event queue properly while all other types work.

Cyclonit
Cloudy #2
Posted 09 December 2012 - 09:24 AM
Tables aren't accepted. Don't think we plan to change that. Just send multiple params.
Cyclonit #3
Posted 09 December 2012 - 09:26 AM
That was unexpectedly fast o.O Thanks for your response.