Merge pull request #113 from AttorneyOnline/fix-force-immediate

Fix force_immediate
This commit is contained in:
Denton Poss 2021-05-01 10:06:58 -05:00 committed by GitHub
commit 6d31a28325
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -682,8 +682,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));