fix(Core/CreatureScript): Fix Ragnaros magma blast (#2394)
This commit is contained in:
parent
7a9c85af9a
commit
51a72c8a46
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ class boss_ragnaros : public CreatureScript
|
|||
events.ScheduleEvent(EVENT_ELEMENTAL_FIRE, urand(10000, 14000));
|
||||
break;
|
||||
case EVENT_MAGMA_BLAST:
|
||||
if (me->IsWithinMeleeRange(me->GetVictim()))
|
||||
if (!me->IsWithinMeleeRange(me->GetVictim()))
|
||||
{
|
||||
DoCastVictim(SPELL_MAGMA_BLAST);
|
||||
if (!_hasYelledMagmaBurst)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue