diff options
author | jackpoz <giacomopoz@gmail.com> | 2015-11-01 18:40:35 +0100 |
---|---|---|
committer | MitchesD <majklprofik@seznam.cz> | 2015-11-06 10:56:27 +0100 |
commit | 5f5ac9630c2716b54a584022e0f69b6507138af0 (patch) | |
tree | aa7e95c25883ebed27f6cebfc28d4db255fb19b8 /src | |
parent | abb714a36ec6079ee94df61b6073e2fe91939e48 (diff) |
Scripts/Naxxramax: Fix clang warning
(cherry picked from commit da0671f4fee1ee00a45dc15e4ddd94d3f9c82a18)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/Naxxramas/boss_noth.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp b/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp index 7fbf0c913e0..5f9ca92aaf4 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp @@ -172,7 +172,7 @@ public: Talk(SAY_DEATH); } - void DamageTaken(Unit* /*who*/, uint32& damage) // prevent noth from somehow dying in the balcony phase + void DamageTaken(Unit* /*who*/, uint32& damage) override // prevent noth from somehow dying in the balcony phase { if (!events.IsInPhase(PHASE_BALCONY)) return; |