Showing results 1 to 1 of 1
Search took 0.00 seconds.
Search: Posts Made By: Ailae
Forum: Lua/XML Help 11-10-19, 03:04 AM
Replies: 2
Views: 3,056
Posted By Ailae
You're defining a variable table at row 8 in your...

You're defining a variable table at row 8 in your code, overwriting the default table implementation.

table.insert({},1) -- works
table = {}
table.insert({},1) -- nil error
Showing results 1 to 1 of 1