TellMeWhen

TellMeWhen

24M Downloads

[Bug]:version

krugerminer opened this issue ยท 3 comments

commented

WoW Version

TBC Classic

TellMeWhen Version

9.2.4

Describe the bug

9c53d2a25fe589909bc4fb0cbd1f95df

Addon isn't recognizing game version properly after the launcher update today.

Worked fine yesterday but not today with no change to addon.

Please save me I can't play without TMW, I'm bad.

Export Strings

N/A
commented

I also have this error. Temporary fix is to just delete the version check entirely.

lines 77-92 of:
C:\Program Files (x86)\World of Warcraft_classic_\Interface\AddOns\TellMeWhen\TellMeWhen.lua

Not sure of unforeseen consequences, but if you can't play without it... worth trying.

deleted snippet:
if WOW_PROJECT_ID ~= WOW_PROJECT_BURNING_CRUSADE_CLASSIC then
StaticPopupDialogs["TMW_PROJECT_MISMATCH"] = {
-- This is not localizable, because AceLocale might not have loaded
-- (this is why we don't bother to load AceLocale until after these checks).
text = ("You've installed TellMeWhen for Classic TBC/Wrath, but this is %s. Please double-check which version of TMW you downloaded."):format(_G["EXPANSION_NAME" .. GetExpansionLevel()]),
button1 = RELOADUI,
button2 = CANCEL,
OnAccept = ReloadUI,
timeout = 0,
showAlert = true,
whileDead = true,
preferredIndex = 3, -- http://forums.wowace.com/showthread.php?p=320956
}
StaticPopup_Show("TMW_PROJECT_MISMATCH")
return
end

commented

Open TellMeWhen.lua with notepad

Find: WOW_PROJECT_BURNING_CRUSADE_CLASSIC

Replace with: WOW_PROJECT_WRATH_CLASSIC

This will fix the error.