From fd01d9fdc9785cea2b98c3ab604adffcb1b7fa23 Mon Sep 17 00:00:00 2001 From: H0zen Date: Tue, 14 Jun 2016 15:32:40 +0300 Subject: [PATCH] Prevent multiple applications of Battle Shout (#141) * Fix warrior Battle Shout bug. -Fixes https://www.getmangos.eu/issue.php?issueid=1177 --- src/game/Object/SpellMgr.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/Object/SpellMgr.cpp b/src/game/Object/SpellMgr.cpp index c692d24a..6dee6ac7 100644 --- a/src/game/Object/SpellMgr.cpp +++ b/src/game/Object/SpellMgr.cpp @@ -576,6 +576,7 @@ bool IsSingleFromSpellSpecificSpellRanksPerTarget(SpellSpecific spellSpec1, Spel case SPELL_AURA: case SPELL_CURSE: case SPELL_ASPECT: + case SPELL_POSITIVE_SHOUT: return spellSpec1 == spellSpec2; default: return false;