[1.79] table.pack does not set n.
SquidDev opened this issue ยท 1 comments
table.pack
should set the size of the table (as per the Lua reference manual), but does not
table.pack = function( ... ) return { ... } end
Should be
table.pack = function( ... ) return {n=select('#',...), ... } end