From f4081b2c6ae35b72669045ffca2f5a4bcab0bcfa Mon Sep 17 00:00:00 2001 From: balrok Date: Sun, 11 Oct 2009 13:53:53 +0200 Subject: [PATCH] [8624] fixed typo introduced in 8552 (it was commit e294da6bbf) through that pickpocketing didn't work right --- src/game/SpellMgr.h | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/SpellMgr.h b/src/game/SpellMgr.h index 236a7f833..569e85210 100644 --- a/src/game/SpellMgr.h +++ b/src/game/SpellMgr.h @@ -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; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 6519055d9..c0b60c9a8 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8623" + #define REVISION_NR "8624" #endif // __REVISION_NR_H__