diff options
author | click <clickvd@gonnamakeyou.com> | 2011-05-28 22:04:48 +0200 |
---|---|---|
committer | click <clickvd@gonnamakeyou.com> | 2011-05-28 22:04:48 +0200 |
commit | 4fe5388be8f196eeb3908d8a1c9c9351e6bbeb20 (patch) | |
tree | 3711d1276e033cfde543e3a52d8f1ae8caffd273 /src | |
parent | d81c7894e98ce00b8d64315c5ba0a861c8144c88 (diff) |
Core/Scripts: Fix some warnings in Ruby Sanctum
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/RubySanctum/boss_baltharus_the_warborn.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Northrend/RubySanctum/boss_baltharus_the_warborn.cpp b/src/server/scripts/Northrend/RubySanctum/boss_baltharus_the_warborn.cpp index 42e82ee4ca5..5afa3ba7c66 100644 --- a/src/server/scripts/Northrend/RubySanctum/boss_baltharus_the_warborn.cpp +++ b/src/server/scripts/Northrend/RubySanctum/boss_baltharus_the_warborn.cpp @@ -111,7 +111,7 @@ class boss_baltharus_the_warborn : public CreatureScript } } - void EnterCombat(Unit* victim) + void EnterCombat(Unit* /*victim*/) { me->InterruptNonMeleeSpells(false); _EnterCombat(); @@ -122,7 +122,7 @@ class boss_baltharus_the_warborn : public CreatureScript Talk(SAY_AGGRO); } - void JustDied(Unit* killer) + void JustDied(Unit* /*killer*/) { _JustDied(); Talk(SAY_DEATH); |