There is a different rez spell depending on race

This commit is contained in:
Michael Cook (mackal)
2016-07-24 22:53:57 -04:00
parent f42b0351fd
commit 3963897fe4
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -704,7 +704,7 @@ bool IsCombatSkill(uint16 spell_id)
bool IsResurrectionEffects(uint16 spell_id)
{
// spell id 756 is Resurrection Effects spell
if(IsValidSpell(spell_id) && spell_id == 756)
if(IsValidSpell(spell_id) && (spell_id == 756 || spell_id == 757))
return true;
return false;