[8709] Show spell miss as miss, not resist

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
Tassader2 2009-03-13 17:10:09 +01:00 committed by ApoC
parent eb26f27a21
commit 53b6d28a24
2 changed files with 2 additions and 2 deletions

View file

@ -2665,7 +2665,7 @@ SpellMissInfo Unit::MagicSpellHitResult(Unit *pVictim, SpellEntry const *spell)
uint32 rand = urand(0,10000);
if (rand < tmp)
return SPELL_MISS_RESIST;
return SPELL_MISS_MISS;
// cast by caster in front of victim
if (pVictim->HasInArc(M_PI,this))

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "8708"
#define REVISION_NR "8709"
#endif // __REVISION_NR_H__