diff --git a/src/net/common/serverlobbythread.cpp b/src/net/common/serverlobbythread.cpp index c6358920..f3cebc6c 100644 --- a/src/net/common/serverlobbythread.cpp +++ b/src/net/common/serverlobbythread.cpp @@ -609,7 +609,7 @@ void ServerLobbyThread::EstablishSession(SessionWrapper session) { if (!session.playerData.get()) - throw ServerException(__FILE__, __LINE__, ERR_NET_INVALID_SESSION, 0); + throw ServerException(__FILE__, __LINE__, ERR_NET_INVALID_SESSION, 0); // Send ACK to client. boost::shared_ptr initAck(new NetPacketInitAck); NetPacketInitAck::Data initAckData; @@ -642,7 +642,7 @@ void ServerLobbyThread::RequestPlayerAvatar(SessionWrapper session) { if (!session.playerData.get()) - throw ServerException(__FILE__, __LINE__, ERR_NET_INVALID_SESSION, 0); + throw ServerException(__FILE__, __LINE__, ERR_NET_INVALID_SESSION, 0); // Ask the client to send its avatar. boost::shared_ptr retrieveAvatar(new NetPacketRetrieveAvatar); NetPacketRetrieveAvatar::Data retrieveAvatarData;