diff options
author | Shauren <shauren.trinity@gmail.com> | 2014-10-29 21:13:21 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2014-10-29 21:13:21 +0100 |
commit | 15fbb6f46fb24fdc6f91786543b32f247e6525fc (patch) | |
tree | 3d07a448e71dae1d948aa5a49b4ea818b2e9a986 /src/server/game/Accounts/AccountMgr.cpp | |
parent | 13281fef3c85688df18b5ea7cfab74411c6529f7 (diff) |
Core/Entites: Updated GUID format
Diffstat (limited to 'src/server/game/Accounts/AccountMgr.cpp')
-rw-r--r-- | src/server/game/Accounts/AccountMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Accounts/AccountMgr.cpp b/src/server/game/Accounts/AccountMgr.cpp index a8387804957..d6985e2a1ad 100644 --- a/src/server/game/Accounts/AccountMgr.cpp +++ b/src/server/game/Accounts/AccountMgr.cpp @@ -81,7 +81,7 @@ AccountOpResult AccountMgr::DeleteAccount(uint32 accountId) { do { - ObjectGuid guid(HighGuid::Player, (*result)[0].GetUInt64()); + ObjectGuid guid = ObjectGuid::Create<HighGuid::Player>((*result)[0].GetUInt64()); // Kick if player is online if (Player* p = ObjectAccessor::FindConnectedPlayer(guid)) |