mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 17:27:36 +01:00
Scripts/Deadmines: fixed a typo that was causing the Defias Harvester Golems to energize the Foe Reaper 5000 multiple times
This commit is contained in:
@@ -53,7 +53,7 @@ struct npc_deadmines_defias_watcher : public ScriptedAI
|
||||
|
||||
void DamageTaken(Unit* attacker, uint32& damage) override
|
||||
{
|
||||
if (!_isOnFire, me->HealthBelowPctDamaged(30, damage))
|
||||
if (!_isOnFire && me->HealthBelowPctDamaged(30, damage))
|
||||
{
|
||||
me->DeleteThreatList();
|
||||
me->CombatStop();
|
||||
|
||||
Reference in New Issue
Block a user