Skip to content

Commit

Permalink
Blizzard deleted the mop/wod challenge mode globals some time ago, an…
Browse files Browse the repository at this point in the history
…d there is no replacement fo rthem. So bronze silver and gold must now be manually localized
  • Loading branch information
MysticalOS committed Apr 14, 2024
1 parent d046cb6 commit 85aab3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DBM-Challenges/MoP/PGWhiteTiger.lua
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ end

do
local mode = {
[1] = CHALLENGE_MODE_MEDAL1,
[2] = CHALLENGE_MODE_MEDAL2,
[3] = CHALLENGE_MODE_MEDAL3,
[1] = L.Bronze,
[2] = L.Silver,
[3] = L.Gold,
[4] = L.Endless,
}
function mod:CHAT_MSG_WHISPER(msg, name, _, _, _, status)
Expand Down
3 changes: 3 additions & 0 deletions DBM-Challenges/localization.en.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ local L
L= DBM:GetModLocalization("d640")

L:SetMiscLocalization({
Bronze = "Bronze",--Blizzard deleted global localization for it from game, has to be done manually now
Silver = "Silver",--Blizzard deleted global localization for it from game, has to be done manually now
Gold = "Gold",--Blizzard deleted global localization for it from game, has to be done manually now
Endless = "Endless",--Could not find a global for this one.
ReplyWhisper = "<Deadly Boss Mods> %s is busy in Proving Grounds (Mode: %s Wave: %d)"
})
Expand Down

0 comments on commit 85aab3f

Please sign in to comment.