table.serialize
or rednet.broadcast
Why is this?(is this even computercrafts fault, or am I just doing something wrong? :unsure:/>)
I can't show the code with which it happens, sorry. I can't seem to reproduce the error.
table.serialize
or rednet.broadcast
Why is this?Thank you!How large are your tables? You could be trying to serialize something really huge and that just overloads the system. Same for broadcasting.
local t_TOP = {
t_BOT_1 = {
},
t_BOT_2 = {
},
t_BOT_3 = {
}
}
for k,v in pairs(t_TOP) do
rednet.broadcast(v)
sleep(0.5)
end
I first signed up on these boards to complain about that (well, more in the hope that I was doing something wrong, but yeah).