fix a typo that broke table unpacking

This commit is contained in:
Connor Olding 2016-10-14 04:19:11 -07:00
parent dfd925e70f
commit 11b62bf9de
2 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@ local floor = math.floor
local format = string.format
local insert = table.insert
local remove = table.remove
local unpack = unpack or table.unpack
local path = string.gsub(..., "[^.]+$", "")
local data = require(path.."data")

View File

@ -1,5 +1,5 @@
local insert = table.insert
local unpack = rawget(_G, 'unpack') or table.insert
local unpack = rawget(_G, 'unpack') or table.unpack
local path = string.gsub(..., "[^.]+$", "")
local data = require(path.."data")