Skip to content

Commit

Permalink
🔧
Browse files Browse the repository at this point in the history
  • Loading branch information
ls- committed May 2, 2023
1 parent 4839d1a commit 0eb75b9
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions ls_UI/core/modernize.lua
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@ function P:Modernize(data, name, key)

data.version = 10000001
end

--> 100100.01
if data.version < 10010001 then
data.login_message = nil

data.version = 10010001
end
elseif key == "profile" then
--> 90001.05
if data.version < 9000105 then
Expand Down Expand Up @@ -781,6 +788,16 @@ function P:Modernize(data, name, key)

data.version = 10000503
end

--> 100100.01
if data.version < 10010001 then
if data.blizzard then
data.blizzard.durability = nil
data.blizzard.maw_buffs = nil
end

data.version = 10010001
end
elseif key == "private" then
--> 90001.05
if data.version < 9000105 then
Expand Down Expand Up @@ -886,5 +903,15 @@ function P:Modernize(data, name, key)

data.version = 10000001
end

--> 100100.01
if data.version < 10010001 then
if data.blizzard then
data.blizzard.durability = nil
data.blizzard.maw_buffs = nil
end

data.version = 10010001
end
end
end

0 comments on commit 0eb75b9

Please sign in to comment.