ComputerCraft

ComputerCraft

21M Downloads

[1.79] table.pack does not set n.

SquidDev opened this issue ยท 1 comments

commented

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
commented

Fixed for 1.78pr1