WoWInterface SVN mikma

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /EnemyScanner
    from Rev 688 to Rev 697
    Reverse comparison

Rev 688 → Rev 697

EnemyScanner.lua
40,6 → 40,7
GameTooltip:SetPoint(GetTipAnchor(frame))
GameTooltip:ClearLines()
local raidclass = RAID_CLASS_COLORS[class]
if not raidclass then raidclass = {} end
local r,g,b = raidclass.r,raidclass.g,raidclass.b
GameTooltip:AddDoubleLine(name,action,r,g,b)
GameTooltip:Show()
157,6 → 158,7
row.text:SetText(entry.name:match("[^-]+").." "..levelcolorhex..entry.level)
local raidclass = RAID_CLASS_COLORS[entry.class]
if not raidclass then
raidclass = {}
raidclass.r, raidclass.g, raidclass.b = 0.5, 0.5, 0.5
end
row.text:SetTextColor(raidclass.r, raidclass.g, raidclass.b, 1)
258,6 → 260,8
level = GetSpellLevelLearned(spellID)
elseif GetSpellLevelLearned(spellID) < temptable[guidsource]["level"] or GetSpellLevelLearned(spellID) == temptable[guidsource]["level"] then
level = temptable[guidsource]["level"]
elseif GetSpellLevelLearned(spellID) > MAX_PLAYER_LEVEL_TABLE[GetAccountExpansionLevel()] then
level = MAX_PLAYER_LEVEL_TABLE[GetAccountExpansionLevel()]
end
end
local found = false
EnemyScanner.toc
3,7 → 3,7
## Title: EnemyScanner
## Notes: Enemy detected!
## SavedVariables: EnemyScannerDB
## Version: 2.2
## Version: 2.3
 
EnemyScanner.lua
EnemyScannerSpellsManual.lua
\ No newline at end of file