Fixed a misspelled method call
This commit is contained in:
@@ -130,7 +130,7 @@ void ServerApplication::HandleLogoutRequest(ClientPacket* const argPacket) {
|
|||||||
ClientData* clientData = clientMgr.Get(accountData->GetClientIndex());
|
ClientData* clientData = clientMgr.Get(accountData->GetClientIndex());
|
||||||
if (!clientData) {
|
if (!clientData) {
|
||||||
std::ostringstream msg;
|
std::ostringstream msg;
|
||||||
msg << "No client found for an account: " << accountData->GetUserName();
|
msg << "No client found for an account: " << accountData->GetUsername();
|
||||||
throw(std::logic_error(msg.str()));
|
throw(std::logic_error(msg.str()));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -225,7 +225,7 @@ void ServerApplication::HandleShutdownRequest(ClientPacket* const argPacket) {
|
|||||||
ClientData* clientData = clientMgr.Get(accountData->GetClientIndex());
|
ClientData* clientData = clientMgr.Get(accountData->GetClientIndex());
|
||||||
if (!clientData) {
|
if (!clientData) {
|
||||||
std::ostringstream msg;
|
std::ostringstream msg;
|
||||||
msg << "No client found for an account: " << accountData->GetUserName();
|
msg << "No client found for an account: " << accountData->GetUsername();
|
||||||
throw(std::logic_error(msg.str()));
|
throw(std::logic_error(msg.str()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user