Fixes for the latest alpha version

This commit is contained in:
Tercio Jose
2023-08-06 16:20:47 -03:00
parent ea2cec6861
commit 6bfcc14309
8 changed files with 154 additions and 29 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
local dversion = 453
local dversion = 454
local major, minor = "DetailsFramework-1.0", dversion
local DF, oldminor = LibStub:NewLibrary(major, minor)
@@ -585,7 +585,7 @@ function DF.table.removeduplicate(table1, table2)
for key, value in pairs(table2) do
if (type(value) == "table") then
if (table1[key]) then
DF.SavedVars.removeduplicate(value, table1[key])
DF.table.removeduplicate(value, table1[key])
end
else
if (type(table1[key]) == "number" and type(value) == "number") then