[8624] fixed typo introduced in 8552

(it was commit e294da6bbf)

through that pickpocketing didn't work right
This commit is contained in:
balrok 2009-10-11 13:53:53 +02:00
parent 45a2ee21ef
commit f4081b2c6a
2 changed files with 2 additions and 2 deletions

View file

@ -200,7 +200,7 @@ inline bool IsPassiveSpellStackableWithRanks(SpellEntry const* spellProto)
inline bool IsDeathOnlySpell(SpellEntry const *spellInfo)
{
return spellInfo->AttributesEx & SPELL_ATTR_EX3_CAST_ON_DEAD
return spellInfo->AttributesEx3 & SPELL_ATTR_EX3_CAST_ON_DEAD
|| spellInfo->Id == 2584
|| spellInfo->Id == 22011;
}

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "8623"
#define REVISION_NR "8624"
#endif // __REVISION_NR_H__