aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Server/BattlenetServerManager.cpp
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2014-10-21 21:09:15 +0200
committerShauren <shauren.trinity@gmail.com>2014-10-21 21:09:15 +0200
commit68f45e87345ff85341f835f0372f2a62b89f24d9 (patch)
treee57ec0d466a20391e9f14b59625317294fe6a134 /src/server/game/Server/BattlenetServerManager.cpp
parent034561792ca9a07d719961ea842af2118428816f (diff)
Core/Entities: Final batch of removing implicit conversions of ObjectGuid to uint64
Diffstat (limited to 'src/server/game/Server/BattlenetServerManager.cpp')
-rw-r--r--src/server/game/Server/BattlenetServerManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Server/BattlenetServerManager.cpp b/src/server/game/Server/BattlenetServerManager.cpp
index b267926c6ff..7f6c1676c1f 100644
--- a/src/server/game/Server/BattlenetServerManager.cpp
+++ b/src/server/game/Server/BattlenetServerManager.cpp
@@ -54,7 +54,7 @@ void Battlenet::ServerManager::SendChangeToonOnlineState(uint32 battlenetAccount
ToonHandle toon;
toon.AccountId = battlenetAccountId;
toon.GameAccountId = gameAccountId;
- toon.Guid = guid;
+ toon.Guid = guid.GetCounter();
toon.Name = name;
zmqpp::message msg;