Skip to content

Commit

Permalink
Playerbots: Fix compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
davidonete committed Mar 25, 2024
1 parent c126a37 commit a581257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/Server/WorldSession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ void WorldSession::LogoutPlayer()

sRandomPlayerbotMgr.OnPlayerLogout(_player);

sLog.outChar("Account: %d (IP: %s) Logout Character:[%s] (guid: %u)", GetAccountId(), m_Socket ? GetRemoteAddress().c_str() : "bot", _player->GetName(), _player->GetGUIDLow());
sLog.outChar("Account: %d (IP: %s) Logout Character:[%s] (guid: %u)", GetAccountId(), m_socket ? GetRemoteAddress().c_str() : "bot", _player->GetName(), _player->GetGUIDLow());
#else
sLog.outChar("Account: %d (IP: %s) Logout Character:[%s] (guid: %u)", GetAccountId(), GetRemoteAddress().c_str(), _player->GetName(), _player->GetGUIDLow());
#endif
Expand Down

0 comments on commit a581257

Please sign in to comment.