[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
if (spellProto->SpellIconID == 2253)
{
//reduces all damage taken while Stunned
if (unitflag & UNIT_FLAG_STUNNED)
//reduces all damage taken while Stunned and in Cat Form
if (m_form == FORM_CAT && (unitflag & UNIT_FLAG_STUNNED))
RemainingDamage -= RemainingDamage * currentAbsorb / 100;
continue;
}

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9782"
#define REVISION_NR "9783"
#endif // __REVISION_NR_H__