mirror of
https://github.com/mangosfour/server.git
synced 2025-12-21 01:37:05 +00:00
Fixed some commented cases for later apply in 3.2.x
* Allow cast 879 and ranks to players * Add support for spell 67596 from some items added into 3.2.x
This commit is contained in:
parent
8ad4f0f10b
commit
9919d89907
2 changed files with 2 additions and 5 deletions
|
|
@ -5703,9 +5703,7 @@ bool Spell::CheckTargetCreatureType(Unit* target) const
|
|||
uint32 spellCreatureTargetMask = m_spellInfo->TargetCreatureType;
|
||||
|
||||
// Curse of Doom & Exorcism: not find another way to fix spell target check :/
|
||||
if (m_spellInfo->SpellFamilyName==SPELLFAMILY_WARLOCK && m_spellInfo->Category == 1179 ||
|
||||
// TODO: will be removed in 3.2.x
|
||||
m_spellInfo->SpellFamilyName==SPELLFAMILY_PALADIN && m_spellInfo->Category == 19)
|
||||
if (m_spellInfo->SpellFamilyName==SPELLFAMILY_WARLOCK && m_spellInfo->Category == 1179)
|
||||
{
|
||||
// not allow cast at player
|
||||
if(target->GetTypeId()==TYPEID_PLAYER)
|
||||
|
|
|
|||
|
|
@ -4991,8 +4991,7 @@ void Aura::HandleAuraModIncreaseHealth(bool apply, bool Real)
|
|||
case 12976: // Warrior Last Stand triggered spell
|
||||
case 28726: // Nightmare Seed ( Nightmare Seed )
|
||||
case 34511: // Valor (Bulwark of Kings, Bulwark of the Ancient Kings)
|
||||
// FIXME: add case 67596: in 3.2.x
|
||||
case 44055: case 55915: case 55917: // Tremendous Fortitude (Battlemaster's Alacrity)
|
||||
case 44055: case 55915: case 55917: case 67596: // Tremendous Fortitude (Battlemaster's Alacrity)
|
||||
case 50322: // Survival Instincts
|
||||
case 54443: // Demonic Empowerment (Voidwalker)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue