diff options
| author | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-04-28 09:54:46 +0200 | 
|---|---|---|
| committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-04-28 09:55:11 +0200 | 
| commit | 221fde571154ee2b62f376da1b2967c5577d806b (patch) | |
| tree | f5ed0a99f045a66894ef902b05f2009e63cfc18a /src | |
| parent | bd6474b3695a251aa601891e3f30982141357de1 (diff) | |
Core: Fix warning
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp | 2 | ||||
| -rw-r--r-- | src/server/game/Globals/ObjectMgr.cpp | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp index 81b8f725e80..c057591e4eb 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp @@ -681,7 +681,7 @@ void BattlegroundSA::DemolisherStartState(bool start)      }  } -void BattlegroundSA::DestroyGate(Player* player, GameObject* go) +void BattlegroundSA::DestroyGate(Player* /*player*/, GameObject* /*go*/)  {  } diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index 8aedacbb48e..454ab920531 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -694,7 +694,7 @@ void ObjectMgr::CheckCreatureTemplate(CreatureTemplate const* cInfo)          if (cInfo->trainer_class != difficultyInfo->trainer_class)          { -            TC_LOG_ERROR("sql.sql", "Creature (Entry: %u, trainer_class: %u) has different `trainer_class` in difficulty %u mode (Entry: %u).", +            TC_LOG_ERROR("sql.sql", "Creature (Entry: %u, trainer_class: %u) has different `trainer_class` in difficulty %u mode (Entry: %u, trainer_class: %u).",                  cInfo->Entry, cInfo->trainer_class, diff + 1, cInfo->DifficultyEntry[diff], difficultyInfo->trainer_class);              TC_LOG_ERROR("sql.sql", "Possible FIX: UPDATE `creature_template` SET `trainer_class`=%u WHERE `entry`=%u;",                  cInfo->trainer_class, cInfo->DifficultyEntry[diff]);  | 
