mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 08:55:32 +01:00
Core/Spells: remove incorrect PvP combat state
by @P-Kito; retrieved from #15027 Neither Vampiric Embrace nor Wandering Plague should keep PvP players in combat state. Players can't drink for extended periods of time in arena debuffed with Death Knight's Wandering Plague + diseases or when the counterpart is buffed with Vampiric Embrace. Every tick keeps them in combat. This PR should fix the issue.
This commit is contained in:
@@ -3235,6 +3235,9 @@ void SpellMgr::LoadSpellInfoCorrections()
|
||||
spellInfo->Effects[EFFECT_1].BasePoints = -6; // -5%
|
||||
break;
|
||||
case 50526: // Wandering Plague
|
||||
case 15290: // Vampiric Embrace
|
||||
spellInfo->AttributesEx3 |= SPELL_ATTR3_NO_INITIAL_AGGRO;
|
||||
break;
|
||||
case 63675: // Improved Devouring Plague
|
||||
spellInfo->AttributesEx3 |= SPELL_ATTR3_NO_DONE_BONUS;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user