Skip to content

Commit

Permalink
Shartuul: Fix legacy spell set choice
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed Sep 30, 2023
1 parent 23b4541 commit aa70877
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ struct ShivanShapeshiftForm : public AuraScript
case SPELL_ASPECT_OF_THE_ICE: spellSet = 2; break;
case SPELL_ASPECT_OF_THE_SHADOW: spellSet = 0; break;
}
demon->SetSpellList(spellSet);
demon->SetSpellList(demon->GetEntry() * 100 + spellSet);
charmInfo->InitPossessCreateSpells();
if (Player* player = dynamic_cast<Player*>(demon->GetCharmer()))
player->PossessSpellInitialize();
Expand Down

0 comments on commit aa70877

Please sign in to comment.