From b6f4982643745c66034ef7ee792c4cc78ae199f7 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Fri, 30 Apr 2021 23:01:52 -0500 Subject: [PATCH] validate ic packets with a cid of -1 --- src/packets.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packets.cpp b/src/packets.cpp index 2841836..dceddf2 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -566,7 +566,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) args.append(QString::number(emote_mod)); // char id - if (incoming_args[8].toInt() != char_id) + if (incoming_args[8].toInt() != char_id && incoming_args[8].toInt() != -1) return invalid; if (first_person) args.append("-1"); // messages with a cid of -1 don't update the viewport