corrected warning message to make sense and spell-checked where SOE failed to do so

This commit is contained in:
IrishDarkshadow
2019-03-11 15:45:50 -07:00
parent a86389b602
commit 65ee22dc2a

View File

@@ -370,7 +370,7 @@ void ConnectionServer::dropClient(ClientConnection *conn, const std::string &des
// pendingMap[suid] = conn;
// else
// {
// WARNING_STRICT_FATAL(true, ("Attepting to add duplicate pending chatacter"));
// WARNING_STRICT_FATAL(true, ("Attempt made to log in an additional character from the same account"));
// pendingMap[suid] = conn;
// }
// }
@@ -1328,7 +1328,7 @@ void ConnectionServer::addToConnectedMap(uint32 suid, ClientConnection *cconn) {
if (i == connectedMap.end()) {
connectedMap[suid] = cconn;
} else {
WARNING_STRICT_FATAL(true, ("Attepting to add duplicate connected chatacter"));
WARNING_STRICT_FATAL(true, ("Attempt made to log in an additional character from the same account"));
connectedMap[suid] = cconn;
}