PERDON POR TODO 1
Some checks are pending
CI / build-windows (push) Blocked by required conditions
CI / build-linux (push) Blocked by required conditions
CI / check-clang-format (push) Waiting to run

This commit is contained in:
simio 2025-03-29 07:34:41 -03:00
parent 9840e05605
commit 857a7fb33f

View File

@ -127,7 +127,11 @@ AOPacket *PacketMS::validateIcPacket(AOClient &client) const
// Doublepost prevention. Has to ignore blankposts and testimony commands. // Doublepost prevention. Has to ignore blankposts and testimony commands.
QString l_incoming_msg = client.dezalgo(l_incoming_args[4].toString().trimmed()); QString l_incoming_msg = client.dezalgo(l_incoming_args[4].toString().trimmed());
QRegularExpressionMatch match = isTestimonyJumpCommand(client.decodeMessage(l_incoming_msg)); QRegularExpressionMatch match = isTestimonyJumpCommand(client.decodeMessage(l_incoming_msg));
bool msg_is_testimony_cmd = (area->statement() != -1 && (match.hasMatch() || l_incoming_msg == ">" || l_incoming_msg == "<")); bool msg_is_testimony_cmd = (match.hasMatch() || l_incoming_msg == ">" || l_incoming_msg == "<");
if (!client.m_last_message.isEmpty() // If the last message you sent isn't empty,
&& l_incoming_msg == client.m_last_message // and it matches the one you're sending,
&& !msg_is_testimony_cmd) // and it's not a testimony command,
return l_invalid; // get it the hell outta here!
if (l_incoming_msg == client.m_last_message && !msg_is_testimony_cmd) return l_invalid; if (l_incoming_msg == client.m_last_message && !msg_is_testimony_cmd) return l_invalid;
if (l_incoming_msg == "" && area->blankpostingAllowed() == false) { if (l_incoming_msg == "" && area->blankpostingAllowed() == false) {