From eeab77c136128ea5e2026f11ecc8e7b8f2b4a9c3 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Tue, 6 Apr 2021 22:05:04 -0500 Subject: [PATCH] Add a single blankspace to the front of additive messages. in1t basically wrote this code. Currently Akashi trims blankspaces, making additive text appear.like so. This remedies it by adding a single blank space to the front of additive messages. --- src/packets.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/packets.cpp b/src/packets.cpp index 8f501d0..d0bbe57 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -601,6 +601,9 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) int additive = incoming_args[24].toInt(); if (additive != 0 && additive != 1) return invalid; + else if (additive == 1) { + args[4].insert(0, " "); + } args.append(QString::number(additive)); // effect