fix(Scripts/GO): Druid‘s fly quest (#14085)

This commit is contained in:
Charlton Lau
2022-12-27 19:27:48 +09:00
committed by GitHub
parent a3a835edc4
commit ba796bee43

View File

@@ -1073,7 +1073,11 @@ public:
//player->CastSpell(player, SPELL_SUMMON_RIZZLE, false);
if (Creature* creature = player->SummonCreature(NPC_RIZZLE, 0.0f, 0.0f, 0.0f, 0.0f, TEMPSUMMON_DEAD_DESPAWN, 0))
creature->CastSpell(player, SPELL_BLACKJACK, false);
{
// no need casting spell blackjack, it's casted by script npc_rizzle_sprysprocket.
//creature->CastSpell(player, SPELL_BLACKJACK, false);
creature->AI()->AttackStart(player);
}
return false;
}