mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 16:38:42 +01:00
Core: Fix some warnings
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user