WoWInterface SVN UrbanAchiever

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 84 to Rev 85
    Reverse comparison

Rev 84 → Rev 85

Main.lua
1160,7 → 1160,12
if IsTrackedAchievement(id) then
RemoveTrackedAchievement(id)
else
AddTrackedAchievement(id)
local retok, _, _, _, completed = pcall (GetAchievementInfo,id)
if not retok or not id then return nil end
if completed == true then
else
AddTrackedAchievement(id)
end
end
self:RefreshAchievementButtons(false)
else