mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 08:55:32 +01:00
Merge pull request #7625 from Elron103/pull-requests
Scripts/MoltenCore: Fix boss Golemagg enrage behaviour
This commit is contained in:
@@ -77,7 +77,7 @@ class boss_golemagg : public CreatureScript
|
||||
|
||||
void DamageTaken(Unit* /*attacker*/, uint32& /*damage*/)
|
||||
{
|
||||
if (HealthBelowPct(10) || me->HasAura(SPELL_ENRAGE))
|
||||
if (!HealthBelowPct(10) || me->HasAura(SPELL_ENRAGE))
|
||||
return;
|
||||
|
||||
DoCast(me, SPELL_ENRAGE, true);
|
||||
|
||||
Reference in New Issue
Block a user