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.
This commit is contained in:
MangosArentLiterature 2021-04-06 22:05:04 -05:00
parent a54772234d
commit eeab77c136

View File

@ -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