diff options
author | Spp <none@none> | 2010-08-30 15:25:15 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-08-30 15:25:15 +0200 |
commit | 405f312918136510fde921403ffffa315bdbcb4b (patch) | |
tree | 1543ab9fe023fcb6ce03d31070917cff527b2e88 /src/server/game/Scripting/ScriptMgr.cpp | |
parent | b0d85ac1858ecc162adb08a8de1b3da68121ce64 (diff) |
Core: Fix more warnings
--HG--
branch : trunk
Diffstat (limited to 'src/server/game/Scripting/ScriptMgr.cpp')
-rw-r--r-- | src/server/game/Scripting/ScriptMgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Scripting/ScriptMgr.cpp b/src/server/game/Scripting/ScriptMgr.cpp index bdff47bc74c..860ec673b4f 100644 --- a/src/server/game/Scripting/ScriptMgr.cpp +++ b/src/server/game/Scripting/ScriptMgr.cpp @@ -182,7 +182,7 @@ void ScriptMgr::Initialize() sLog.outString("Loading C++ scripts"); barGoLink bar(1); bar.step(); - sLog.outString(""); + sLog.outString(); FillSpellSummary(); AddScripts(); @@ -855,7 +855,7 @@ bool ScriptMgr::OnAreaTrigger(Player* player, AreaTriggerEntry const* trigger) return tmpscript->OnTrigger(player, trigger); } -Battleground* ScriptMgr::CreateBattleground(BattlegroundTypeId typeId) +Battleground* ScriptMgr::CreateBattleground(BattlegroundTypeId /*typeId*/) { // TODO: Implement script-side battlegrounds. ASSERT(false); |