mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-20 05:01:29 +00:00
Previous disc buff check incorrectly excluded Savage Spirit AA line
This still doesn't fix Untamed Rage ... unsure on that one :(
This commit is contained in:
parent
4b93ef0a98
commit
bdb083eac7
@ -672,9 +672,7 @@ bool IsDisciplineBuff(uint16 spell_id)
|
|||||||
if (!IsValidSpell(spell_id))
|
if (!IsValidSpell(spell_id))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (spells[spell_id].mana == 0 && spells[spell_id].short_buff_box == 0 &&
|
if (spells[spell_id].IsDisciplineBuff && spells[spell_id].targettype == ST_Self)
|
||||||
(spells[spell_id].EndurCost || spells[spell_id].EndurUpkeep) &&
|
|
||||||
spells[spell_id].targettype == ST_Self)
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user