diff options
author | QAston <none@none> | 2009-06-25 16:34:49 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-06-25 16:34:49 +0200 |
commit | 642a343d9859f0b70f03b08a36f28401f9b760ec (patch) | |
tree | 39d3b5ba1ab5371e97edf92de1c3dc6dbbd2d823 /src/game/Unit.cpp | |
parent | 4ca17d413703a8fdb51018f4b95a6682ad8f80d0 (diff) |
*Fix Nurturing Instinct.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index d5c4f0db0e1..29b7b09a12b 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -13335,9 +13335,9 @@ AuraEffect* Unit::GetDummyAura( uint32 spell_id ) const return NULL; } -AuraEffect* Unit::GetDummyAura(SpellFamilyNames name, uint32 iconId) const +AuraEffect* Unit::GetAuraEffect(AuraType type, SpellFamilyNames name, uint32 iconId) const { - Unit::AuraEffectList const& mDummy = GetAurasByType(SPELL_AURA_DUMMY); + Unit::AuraEffectList const& mDummy = GetAurasByType(type); for(Unit::AuraEffectList::const_iterator itr = mDummy.begin(); itr != mDummy.end(); ++itr) { SpellEntry const * spell = (*itr)->GetSpellProto(); |