mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-13 05:29:13 +01:00
Scripts/SunwellPlateau: Fix a typo that caused M'uru's phase transition to fail on some rare cases
(cherry picked from commit 1e3247f00e)
This commit is contained in:
@@ -207,7 +207,7 @@ public:
|
||||
|
||||
void DamageTaken(Unit* /*done_by*/, uint32 &damage) override
|
||||
{
|
||||
if (damage > me->GetHealth() && events.IsInPhase(PHASE_ONE))
|
||||
if (damage >= me->GetHealth() && events.IsInPhase(PHASE_ONE))
|
||||
{
|
||||
damage = 0;
|
||||
me->RemoveAllAuras();
|
||||
|
||||
Reference in New Issue
Block a user