diff options
author | jackpoz <giacomopoz@gmail.com> | 2015-07-01 20:57:20 +0200 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2015-07-01 20:57:20 +0200 |
commit | 55681666b3cc0e33eeb5cdb77e638e68c19f452c (patch) | |
tree | f7c5c07cc2701fba024a24973ccfcbdd706b86db /src/server/scripts | |
parent | 2263cb9e1015ed0f6dbf83b63d8f0332bcbe6205 (diff) |
Core/Misc: Fix build warnings
Diffstat (limited to 'src/server/scripts')
-rw-r--r-- | src/server/scripts/Northrend/VioletHold/boss_ichoron.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Northrend/VioletHold/boss_ichoron.cpp b/src/server/scripts/Northrend/VioletHold/boss_ichoron.cpp index 137f63a381d..cfdacb10896 100644 --- a/src/server/scripts/Northrend/VioletHold/boss_ichoron.cpp +++ b/src/server/scripts/Northrend/VioletHold/boss_ichoron.cpp @@ -489,7 +489,7 @@ public: // on retail spell casted on a creature's death are not casted after death but keeping mob at 1 health, casting it and then letting the mob die. // this feature should be still implemented - void DamageTaken(Unit* attacker, uint32 &damage) override + void DamageTaken(Unit* /*attacker*/, uint32 &damage) override { int32 actualHp = me->GetHealth(); actualHp -= damage; |