Reduce fatal call for multi-client instance

This commit is contained in:
AconiteGodOfSWG
2020-11-18 13:25:00 -05:00
parent c7fcdd0682
commit d29dab414c
@@ -1328,7 +1328,7 @@ void ConnectionServer::addToConnectedMap(uint32 suid, ClientConnection *cconn) {
if (i == connectedMap.end()) {
connectedMap[suid] = cconn;
} else {
WARNING_STRICT_FATAL(true, ("Attempt made to log in an additional character from the same account"));
WARNING(true, ("Attempt made to log in an additional character from the same account"));
connectedMap[suid] = cconn;
}