Skip to content

Commit

Permalink
Prep for 3.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Anonomit committed Jun 20, 2023
1 parent 3556c26 commit f83aa36
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Client.lua
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ function LootReserve.Client:Load()
}), self.Settings.LibDBIcon);


-- 2023-06-19: Reset auto roll notification
if versionSave < "2023-06-19" then
-- 2023-06-20: Reset auto roll notification
if versionSave < "2023-06-20" then
self.Settings.RollRequestAutoRollNotified = false;
end

Expand Down
2 changes: 1 addition & 1 deletion Data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Wrath:
3.3: ToC / Ony, new VoA boss
3.4: ICC, new VoA boss
--]]
local EXPANSION_PHASE = 3.2;
local EXPANSION_PHASE = GetBuildInfo() == "3.4.1" and 3.2 or 3.3;


local hidden = { Hidden = true };
Expand Down
4 changes: 2 additions & 2 deletions Server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -686,8 +686,8 @@ function LootReserve.Server:Load()
end
end

-- 2023-06-19: Remove illegal characters in phases
if versionSave < "2023-06-19" then
-- 2023-06-20: Remove illegal characters in phases
if versionSave < "2023-06-20" then
for _, t in ipairs({LootReserve.Server.Settings.RollPhases, LootReserve.Server.Settings.Phases}) do
for i, phase in ipairs(t) do
t[i] = phase:gsub("[,|]", "");
Expand Down

0 comments on commit f83aa36

Please sign in to comment.