Creature/Script: npc_ruby_emerald_amber_drake

Closes #24220

(cherry picked from commit 7a4409b51f)
This commit is contained in:
sirikfoll
2020-03-13 16:55:26 +01:00
committed by Shauren
parent 10cf49e130
commit caac215785

View File

@@ -296,13 +296,13 @@ class npc_ruby_emerald_amber_drake : public CreatureScript
switch (me->GetEntry())
{
case NPC_RUBY_DRAKE_VEHICLE:
me->CastSpell(summoner, SPELL_RIDE_RUBY_DRAKE_QUE);
me->CastSpell(summoner, SPELL_RIDE_RUBY_DRAKE_QUE, true);
break;
case NPC_EMERALD_DRAKE_VEHICLE:
me->CastSpell(summoner, SPELL_RIDE_EMERALD_DRAKE_QUE);
me->CastSpell(summoner, SPELL_RIDE_EMERALD_DRAKE_QUE, true);
break;
case NPC_AMBER_DRAKE_VEHICLE:
me->CastSpell(summoner, SPELL_RIDE_AMBER_DRAKE_QUE);
me->CastSpell(summoner, SPELL_RIDE_AMBER_DRAKE_QUE, true);
break;
default:
return;