From e3ccd4b4b7caaa4f311d9937e38d7e83975c4c32 Mon Sep 17 00:00:00 2001 From: ApoC Date: Sun, 18 Jan 2009 19:54:18 +0100 Subject: [PATCH] [7106] Compile fix. Signed-off-by: ApoC --- src/game/SpellMgr.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 009ddf4b1..47b96539e 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -2392,7 +2392,7 @@ DiminishingGroup GetDiminishingReturnsGroupForSpell(SpellEntry const* spellproto case SPELLFAMILY_WARLOCK: { // Fear - else if (spellproto->SpellFamilyFlags & 0x40840000000LL) + if (spellproto->SpellFamilyFlags & 0x40840000000LL) return DIMINISHING_WARLOCK_FEAR; // Curses/etc else if (spellproto->SpellFamilyFlags & 0x00080000000LL) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index f0965187e..f5c9bcbae 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 "7105" + #define REVISION_NR "7106" #endif // __REVISION_NR_H__