fix(Core/CreatureScript): Fix Ragnaros magma blast (#2394)

This commit is contained in:
Dresmyr
2019-11-29 04:06:32 -05:00
committed by Stoabrogga
parent 7a9c85af9a
commit 51a72c8a46

View File

@@ -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)