Don't run the disconnect routine twice, Salanto
I should not be allowed to code this late
This commit is contained in:
parent
883ac90511
commit
c79cdf3a4c
@ -227,8 +227,6 @@ void Server::clientConnected()
|
||||
client->deleteLater();
|
||||
});
|
||||
connect(l_socket, &NetworkSocket::handlePacket, client, &AOClient::handlePacket);
|
||||
connect(l_socket, &NetworkSocket::clientDisconnected,
|
||||
client, &AOClient::clientDisconnected);
|
||||
|
||||
AOPacket decryptor("decryptor", {"NOENCRYPT"}); // This is the infamous workaround for
|
||||
// tsuserver4. It should disable fantacrypt
|
||||
@ -308,8 +306,6 @@ void Server::ws_clientConnected()
|
||||
l_socket->deleteLater();
|
||||
});
|
||||
connect(l_socket, &NetworkSocket::handlePacket, client, &AOClient::handlePacket);
|
||||
connect(l_socket, &NetworkSocket::clientDisconnected,
|
||||
client, &AOClient::clientDisconnected);
|
||||
|
||||
AOPacket decryptor("decryptor", {"NOENCRYPT"}); // This is the infamous workaround for
|
||||
// tsuserver4. It should disable fantacrypt
|
||||
|
Loading…
Reference in New Issue
Block a user