Up the bard level check to 255 again

1-254 actually has special bard logic and client expects it
This commit is contained in:
Michael Cook (mackal) 2015-06-25 13:21:02 -04:00
parent 32e880f571
commit c3a805923c

View File

@ -447,7 +447,7 @@ bool IsTGBCompatibleSpell(uint16 spell_id)
bool IsBardSong(uint16 spell_id)
{
if (IsValidSpell(spell_id) && spells[spell_id].classes[BARD - 1] < 127 && !spells[spell_id].IsDisciplineBuff)
if (IsValidSpell(spell_id) && spells[spell_id].classes[BARD - 1] < 255 && !spells[spell_id].IsDisciplineBuff)
return true;
return false;