diff options
author | QAston <none@none> | 2009-05-03 00:02:02 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-05-03 00:02:02 +0200 |
commit | abe9b27ee44dd8484b8b8992bba742480f4ab33a (patch) | |
tree | 73896240c2e4ea3f47b348b9012f574c9213dbb4 /src/game/SpellAuras.cpp | |
parent | 823cb628be711520fec7467ee0583953a09e7ac8 (diff) |
*Fix target selection for wild growth and circle of healing
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellAuras.cpp')
-rw-r--r-- | src/game/SpellAuras.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 5749cb65d35..ee06da14352 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -3199,7 +3199,7 @@ void AuraEffect::HandleAuraTransform(bool apply, bool Real) m_target->SetDisplayId(modelid); // Dragonmaw Illusion (set mount model also) - if(GetId()==42016 && m_target->GetMountID() && !m_target->GetAurasByType(SPELL_AURA_MOD_INCREASE_FLIGHT_SPEED).empty()) + if(GetId()==42016 && m_target->GetMountID() && !m_target->GetAurasByType(SPELL_AURA_MOD_INCREASE_MOUNTED_FLIGHT_SPEED).empty()) m_target->SetUInt32Value(UNIT_FIELD_MOUNTDISPLAYID,16314); } } @@ -4019,7 +4019,7 @@ void AuraEffect::HandleAuraModIncreaseFlightSpeed(bool apply, bool Real) return; // Enable Fly mode for flying mounts - if (m_auraName == SPELL_AURA_MOD_INCREASE_FLIGHT_SPEED) + if (m_auraName == SPELL_AURA_MOD_INCREASE_MOUNTED_FLIGHT_SPEED) { WorldPacket data; if(apply) |