From a621ae6113334954b1aeb4a6d50cca5db9b36fd8 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Fri, 9 Apr 2021 03:05:15 -0500 Subject: [PATCH] alter antispam to function more like tsu3 --- include/aoclient.h | 2 +- src/packets.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index e99d417..95e9b77 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -53,7 +53,7 @@ class AOClient : public QObject { AOClient(Server* p_server, QTcpSocket* p_socket, QObject* parent = nullptr, int user_id = 0) : QObject(parent), id(user_id), remote_ip(p_socket->peerAddress()), password(""), joined(false), current_area(0), current_char(""), socket(p_socket), server(p_server), - is_partial(false), last_wtce_time(0), last_message("") {}; + is_partial(false), last_wtce_time(0) {}; /** * @brief Destructor for the AOClient instance. diff --git a/src/packets.cpp b/src/packets.cpp index dd4d225..03c858d 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -433,15 +433,15 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) // message text QString incoming_msg = dezalgo(incoming_args[4].toString().trimmed()); - if (incoming_msg == last_message) + if (!area->last_ic_message.isEmpty() + && incoming_msg == area->last_ic_message[4] + && incoming_msg != "") return invalid; if (incoming_msg == "" && area->blankposting_allowed == false) { sendServerMessage("Blankposting has been forbidden in this area."); return invalid; } - - last_message = incoming_msg; args.append(incoming_msg); // side