web clients get removed later by the proxy

This commit is contained in:
stonedDiscord 2021-10-13 22:54:42 +02:00 committed by Salanto
parent 3ac0bc6247
commit 7acc70464e

View File

@ -399,11 +399,10 @@ void AOClient::pktWebSocketIp(AreaData* area, int argc, QStringList argv, AOPack
#endif
m_remote_ip = QHostAddress(argv[0]);
if (isIPBanned(m_remote_ip)){
if (server->isIPBanned(m_remote_ip)){
QString l_reason = "Your IP has been banned by a moderator.";
AOPacket l_ban_reason("BD", {l_reason});
m_socket->write(l_ban_reason.toUtf8());
client->deleteLater();
m_socket->close();
return;
}