Skip to content

Commit

Permalink
update:
Browse files Browse the repository at this point in the history
- type in symbiosis tooltip
  • Loading branch information
sinaris committed Sep 27, 2012
1 parent a8af828 commit 140db71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AsphyxiaUI/Modules/Tooltip/Symbiosis.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ GameTooltip:HookScript( "OnTooltipSetUnit", function( self )
if( not uspec ) then return end
local spec = SPEC_CORE_ABILITY_TEXT[select( 1, GetSpecializationInfo( uspec ) )]
local spellID
if( S.class == "DRUID" and S.level >= 87 and uclass ~= "DRUID" ) then
if( S.myclass == "DRUID" and S.level >= 87 and uclass ~= "DRUID" ) then
spellID = stabledruid[uclass][spec]
elseif( S.class ~= "DRUID" and ( uclass == "DRUID" and ulevel >= 87 ) ) then
elseif( S.myclass ~= "DRUID" and ( uclass == "DRUID" and ulevel >= 87 ) ) then
spellID = stable[S.myclass][spec]
end
local name = GetSpellInfo( spellID )
Expand Down

0 comments on commit 140db71

Please sign in to comment.