Posted 02 September 2012 - 06:54 AM
When unserializing a serialized table that has another serialized table with strings inside it, textutils.unserialize returns a string instead of the table it's meant to return.
To reproduce:
To reproduce:
- Open an interactive lua prompt on a computer.
- Assign variable a to the output of textutils.serialize({"a", "b", "c"})
- Assign variable b to the output of textutils.serialize({"test", a})
- Now, assign variable c to the output of textutils.unserialize(b)
- Running type( c ) returns "string"