diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index c8dec8eb3..7836cb290 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -2554,8 +2554,12 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) for (Unit::AuraList::const_iterator itr = dummyList.begin(); itr != dummyList.end(); ++itr) { if ((*itr)->GetSpellProto()->SpellFamilyName == SPELLFAMILY_DEATHKNIGHT && (*itr)->GetSpellProto()->SpellIconID == 2710) + { if (roll_chance_i((*itr)->GetModifier()->m_amount)) // don't consume if found return; + else + break; + } } // consume diseases diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 219a17f2a..c83007916 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 "10454" + #define REVISION_NR "10455" #endif // __REVISION_NR_H__