mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-10 03:59:05 +01:00
Core/Spells: Blood Rune activation no longer can activate Death Runes
This commit is contained in:
@@ -5181,10 +5181,8 @@ void Spell::EffectActivateRune(SpellEffIndex effIndex)
|
||||
uint32 count = damage;
|
||||
int32 miscValue = (1 << m_spellInfo->Effects[effIndex].MiscValue);
|
||||
|
||||
// Death and Blood runes may activate each other
|
||||
if (miscValue & (1 << RUNE_BLOOD))
|
||||
miscValue |= (1 << RUNE_DEATH);
|
||||
else if (miscValue & (1 << RUNE_DEATH))
|
||||
// Death Runes may also activate Blood Runes (Blood Tap)
|
||||
if (miscValue & (1 << RUNE_DEATH))
|
||||
miscValue |= (1 << RUNE_BLOOD);
|
||||
|
||||
for (uint32 i = 0; i < MAX_RUNES && count > 0; ++i)
|
||||
|
||||
Reference in New Issue
Block a user