diff options
author | jackpoz <giacomopoz@gmail.com> | 2015-11-01 18:40:35 +0100 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2015-11-01 18:40:35 +0100 |
commit | da0671f4fee1ee00a45dc15e4ddd94d3f9c82a18 (patch) | |
tree | 86b2c24766b081b7328332e94b8fc3da8350e251 /src | |
parent | 146608985dc01ef16ae9556392a9047cae9c856d (diff) |
Scripts/Naxxramax: Fix clang warning
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 810d446111a..f6dc75c7b3b 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; |