From 06aa0a94d44e303d8eb59f8035daaae88b3f6062 Mon Sep 17 00:00:00 2001 From: QAston Date: Mon, 8 Jun 2009 21:08:27 +0200 Subject: *Fix improved sprint. --HG-- branch : trunk --- src/game/SpellMgr.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/game/SpellMgr.cpp') diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index bfd2e44f497..71857f802d3 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -3448,6 +3448,11 @@ void SpellMgr::LoadSpellCustomAttr() else if(spellInfo->SpellFamilyFlags[0] & 0x8) mSpellCustomAttr[i] |= SPELL_ATTR_CU_AURA_CC; break; + // Do not allow Deadly throw and Slice and Dice to proc twice + case SPELLFAMILY_ROGUE: + if(spellInfo->SpellFamilyFlags[1] & 0x1 || spellInfo->SpellFamilyFlags[0] & 0x40000) + spellInfo->AttributesEx4 |= SPELL_ATTR_EX4_CANT_PROC_FROM_SELFCAST; + break; } } -- cgit v1.2.3