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:
parent
a54772234d
commit
eeab77c136
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user