mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
Starbeamrainbowlabs
1f44e240fb
..it was getting rather long, because Lua doesn't exactly come with batteries included :-/
12 lines
428 B
Lua
12 lines
428 B
Lua
--- Polyfill for unpack / table.unpack.
|
|
-- Calls unpack when available, and looks for table.unpack if unpack() isn't
|
|
-- found.
|
|
-- This is needed because in Lua 5.1 it's the global unpack(), but in Lua 5.4
|
|
-- it's moved to table.unpack().
|
|
function worldeditadditions.table_unpack(tbl, offset, count)
|
|
if type(unpack) == "function" then
|
|
return unpack(tbl, offset, count)
|
|
else
|
|
return table.unpack(tbl, offset, count)
|
|
end
|
|
end
|