diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 87ec3ff6d..526acd940 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -7563,16 +7563,15 @@ void Aura::PeriodicDummyTick() // Harpooner's Mark // case 40084: // return; - // Feeding Frenzy Rank 1 + // Feeding Frenzy Rank 1 & 2 case 53511: - if ( m_target->GetHealth() * 100 < m_target->GetMaxHealth() * 35 ) - m_target->CastSpell(m_target, 60096, true, NULL, this); - return; - // Feeding Frenzy Rank 2 case 53512: - if ( m_target->GetHealth() * 100 < m_target->GetMaxHealth() * 35 ) - m_target->CastSpell(m_target, 60097, true, NULL, this); + { + Unit* victim = m_target->getVictim(); + if( victim && victim->GetHealth() * 100 < victim->GetMaxHealth() * 35 ) + m_target->CastSpell(m_target, m_spellInfo->Id == 53511 ? 60096 : 60097, true, NULL, this); return; + } default: break; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index fac853a12..f4e9b4110 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9312" + #define REVISION_NR "9313" #endif // __REVISION_NR_H__