From b48ac1873c0d0618d36ed7aa5c5c549bb70c5654 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Thu, 29 Apr 2021 22:54:54 -0500 Subject: [PATCH] Fix force_immediate --- src/packets.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/packets.cpp b/src/packets.cpp index 10f25c7..6b0759a 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -680,8 +680,16 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) // immediate text processing int immediate = incoming_args[18].toInt(); - if (area->force_immediate) - immediate = 1; + if (area->force_immediate) { + if (args[7] == "1" || args[7] == "2") { + args[7] = "0"; + immediate = 1; + } + else if (args[7] == "6") { + args[7] = "5"; + immediate = 1; + } + } if (immediate != 1 && immediate != 0) return invalid; args.append(QString::number(immediate));