[9040] Update code for talent 17056 and ranks correct work.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
laise 2009-12-21 01:27:56 +03:00 committed by VladimirMangos
parent 7b0a059d2f
commit 70c7d955f9
2 changed files with 9 additions and 6 deletions

View file

@ -3008,27 +3008,30 @@ void Aura::HandleAuraModShapeshift(bool apply, bool Real)
case FORM_DIREBEAR: case FORM_DIREBEAR:
{ {
// get furor proc chance // get furor proc chance
uint32 FurorChance = 0; int32 furorChance = 0;
Unit::AuraList const& mDummy = m_target->GetAurasByType(SPELL_AURA_DUMMY); Unit::AuraList const& mDummy = m_target->GetAurasByType(SPELL_AURA_DUMMY);
for(Unit::AuraList::const_iterator i = mDummy.begin(); i != mDummy.end(); ++i) for(Unit::AuraList::const_iterator i = mDummy.begin(); i != mDummy.end(); ++i)
{ {
if ((*i)->GetSpellProto()->SpellIconID == 238) if ((*i)->GetSpellProto()->SpellIconID == 238)
{ {
FurorChance = (*i)->GetModifier()->m_amount; furorChance = (*i)->GetModifier()->m_amount;
break; break;
} }
} }
if(!furorChance)
break;
if (m_modifier.m_miscvalue == FORM_CAT) if (m_modifier.m_miscvalue == FORM_CAT)
{ {
m_target->SetPower(POWER_ENERGY, 0); m_target->SetPower(POWER_ENERGY, 0);
if(urand(1,100) <= FurorChance) // Furor chance is now amount of energy for cat form
m_target->CastSpell(m_target, 17099, true, NULL, this); m_target->CastCustomSpell(m_target, 17099, &furorChance, NULL, NULL, this);
} }
else else
{ {
m_target->SetPower(POWER_RAGE, 0); m_target->SetPower(POWER_RAGE, 0);
if(urand(1,100) <= FurorChance) if(urand(1,100) <= furorChance)
m_target->CastSpell(m_target, 17057, true, NULL, this); m_target->CastSpell(m_target, 17057, true, NULL, this);
} }
break; break;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "9039" #define REVISION_NR "9040"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__