diff options
author | click <none@none> | 2010-12-25 06:28:38 +0100 |
---|---|---|
committer | click <none@none> | 2010-12-25 06:28:38 +0100 |
commit | b181ba21d9d6c7c9514b265f43bbe098d8a4f284 (patch) | |
tree | 5fc8a8c23bbb040adaad7313726453f2d9db81a6 /src/server/game/DungeonFinding/LFGScripts.cpp | |
parent | 26973154768c2af2ff708b7330aa9d4a5e7fb071 (diff) |
Core: Fix a few warnings here and there.
--HG--
branch : trunk
Diffstat (limited to 'src/server/game/DungeonFinding/LFGScripts.cpp')
-rw-r--r-- | src/server/game/DungeonFinding/LFGScripts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/DungeonFinding/LFGScripts.cpp b/src/server/game/DungeonFinding/LFGScripts.cpp index 12ce142a292..fdf9ff1bf92 100644 --- a/src/server/game/DungeonFinding/LFGScripts.cpp +++ b/src/server/game/DungeonFinding/LFGScripts.cpp @@ -164,9 +164,9 @@ void LFGScripts::OnLogin(Player* player) // TODO - Restore LfgPlayerData and send proper status to player if it was in a group } -void LFGScripts::OnBindToInstance(Player* player, Difficulty difficulty, uint32 mapId, bool permanent) +void LFGScripts::OnBindToInstance(Player* player, Difficulty difficulty, uint32 mapId, bool /*permanent*/) { MapEntry const* mapEntry = sMapStore.LookupEntry(mapId); if (mapEntry->IsDungeon() && difficulty > DUNGEON_DIFFICULTY_NORMAL) sLFGMgr->InitializeLockedDungeons(player); -}
\ No newline at end of file +} |