[Bug]:version
krugerminer opened this issue ยท 3 comments
Issue was fixed by https://github.com/ascott18/TellMeWhen/releases/tag/9.2.5-wrath
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