Core: Fix some warnings

This commit is contained in:
Vincent-Michael
2012-12-01 14:58:57 +01:00
parent 4015f4f2ff
commit ae4d63bb8e
2 changed files with 4 additions and 4 deletions

View File

@@ -28,7 +28,7 @@
enum LazyPeonYells
{
SAY_SPELL_HIT = -1000600 //Ow! OK, I''ll get back to work, $N!'
SAY_SPELL_HIT = 0
};
enum LazyPeon

View File

@@ -149,7 +149,7 @@ class boss_steelbreaker : public CreatureScript
me->RemoveAllAuras();
}
void EnterCombat(Unit* who)
void EnterCombat(Unit* /*who*/)
{
_EnterCombat();
Talk(SAY_STEELBREAKER_AGGRO);
@@ -280,7 +280,7 @@ class boss_runemaster_molgeim : public CreatureScript
me->RemoveAllAuras();
}
void EnterCombat(Unit* who)
void EnterCombat(Unit* /*who*/)
{
_EnterCombat();
Talk(SAY_MOLGEIM_AGGRO);
@@ -432,7 +432,7 @@ class boss_stormcaller_brundir : public CreatureScript
me->ApplySpellImmune(0, IMMUNITY_MECHANIC, MECHANIC_STUN, false); // Reset immumity, Brundir should be stunnable by default
}
void EnterCombat(Unit* who)
void EnterCombat(Unit* /*who*/)
{
_EnterCombat();
Talk(SAY_BRUNDIR_AGGRO);