Fix table.equals

This commit is contained in:
BenDol 2014-07-09 17:00:10 +12:00
parent 9e30c39035
commit 12b3bd4ee0
1 changed files with 2 additions and 5 deletions

View File

@ -183,13 +183,10 @@ function table.collect(t, func)
end
function table.equals(t, comp)
local equals = false
if type(t) == "table" and type(comp) == "table" then
for k,v in pairs(t) do
if v == comp[k] then
equals = true
if v ~= comp[k] then return false end
end
end
end
return equals
return true
end