mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-26 11:27:17 +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:
+1
-3
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user