From ba62cdbe8f825c3d4d752edd8f4d23d979bd5c79 Mon Sep 17 00:00:00 2001 From: ApoC Date: Sat, 17 Oct 2009 00:55:25 +0200 Subject: [PATCH] [8657] Mark spell 44689 as negative. This allows aura to be counted down in logoff. Signed-off-by: ApoC --- src/game/SpellMgr.cpp | 4 +++- src/shared/revision_nr.h | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 8df296ca2..a90ec5105 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -438,7 +438,9 @@ bool IsPositiveEffect(uint32 spellId, uint32 effIndex) // some explicitly required dummy effect sets switch(spellId) { - case 28441: return false; // AB Effect 000 + case 28441: // AB Effect 000 + case 44689: // Relay Race Accept Hidden Debuff - DND + return false; default: break; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 1d5d1cedf..0a10f6567 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 "8656" + #define REVISION_NR "8657" #endif // __REVISION_NR_H__