Update packets.cpp

The AO Client supports up to twelve colors by default.
This commit is contained in:
Salanto 2021-03-31 19:16:34 +02:00
parent d9b4936861
commit 43b12ea5aa

View File

@ -486,7 +486,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
// text color
int text_color = incoming_args[14].toInt();
if (text_color != 0 && text_color != 1 && text_color != 2 && text_color != 3 && text_color != 4 && text_color != 5 && text_color != 6)
if (text_color < 0 || text_color > 11)
return invalid;
args.append(QString::number(text_color));