[9783] Update 33851 and ranks according to 3.1.0 patch notes

This commit is contained in:
Laise 2010-04-23 18:16:18 +03:00
parent d1dd6a8ca3
commit 8ec81caabf
2 changed files with 3 additions and 3 deletions

View file

@ -1997,8 +1997,8 @@ void Unit::CalculateAbsorbAndResist(Unit *pCaster, SpellSchoolMask schoolMask, D
// Primal Tenacity // Primal Tenacity
if (spellProto->SpellIconID == 2253) if (spellProto->SpellIconID == 2253)
{ {
//reduces all damage taken while Stunned //reduces all damage taken while Stunned and in Cat Form
if (unitflag & UNIT_FLAG_STUNNED) if (m_form == FORM_CAT && (unitflag & UNIT_FLAG_STUNNED))
RemainingDamage -= RemainingDamage * currentAbsorb / 100; RemainingDamage -= RemainingDamage * currentAbsorb / 100;
continue; continue;
} }

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 "9782" #define REVISION_NR "9783"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__