mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 09:44:45 +01:00
Core/Spells:
* Bryntroll's Drain Life should not crit. * Bestial Wrath can be used while under CC since patch 3.3.2 Patch 3.2.2 (2009-09-22): "Bestial Wrath and The Beast Within Changed to function like PvP Trinkets, removing any movement impairing effects, and giving immunity to these effects for 10 seconds.", also the tooltip doesn't say this, but it now breaks all forms of CC that a PvP trinket would break (including Cyclone,Sap, etc.).
This commit is contained in:
@@ -5591,7 +5591,7 @@ SpellCastResult Spell::CheckCasterAuras() const
|
||||
dispel_immune |= SpellInfo::GetDispelMask(DispelType(m_spellInfo->Effects[i].MiscValue));
|
||||
}
|
||||
// immune movement impairment and loss of control
|
||||
if (m_spellInfo->Id == 42292 || m_spellInfo->Id == 59752)
|
||||
if (m_spellInfo->Id == 42292 || m_spellInfo->Id == 59752 || m_spellInfo->Id == 19574)
|
||||
mechanic_immune = IMMUNE_TO_MOVEMENT_IMPAIRMENT_AND_LOSS_CONTROL_MASK;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user