diff options
author | Spp <none@none> | 2010-12-16 04:20:22 +0100 |
---|---|---|
committer | Spp <none@none> | 2010-12-16 04:20:22 +0100 |
commit | 451a6f40d447d6257bd25b469de36ac6095d0332 (patch) | |
tree | 4a67a6d5cc63075060132a4ea4016f0912351dcb /src/server/game/DungeonFinding/LFGScripts.cpp | |
parent | 1bc9b905f68959cad70dceb839f08fca4c8ec2b5 (diff) |
Core/Dungeon Finder: Use full guid of players instead of lowguid
Note: This change is done in preparation of other changes that will come later.
--HG--
branch : trunk
Diffstat (limited to 'src/server/game/DungeonFinding/LFGScripts.cpp')
-rw-r--r-- | src/server/game/DungeonFinding/LFGScripts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/DungeonFinding/LFGScripts.cpp b/src/server/game/DungeonFinding/LFGScripts.cpp index 04d00c52164..d3c32b5364c 100644 --- a/src/server/game/DungeonFinding/LFGScripts.cpp +++ b/src/server/game/DungeonFinding/LFGScripts.cpp @@ -77,7 +77,7 @@ void LFGScripts::OnRemoveMember(Group* group, uint64 guid, RemoveMethod& method, std::string str_reason = ""; if (reason) str_reason = std::string(reason); - sLFGMgr.InitBoot(group, GUID_LOPART(kicker), GUID_LOPART(guid), str_reason); + sLFGMgr.InitBoot(group, kicker, guid, str_reason); return; } |