Make iniswap detection ignore case
This commit is contained in:
parent
4c32cf86cc
commit
bdd5ad745c
@ -517,11 +517,11 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
|
|||||||
args.append(incoming_args[1].toString());
|
args.append(incoming_args[1].toString());
|
||||||
|
|
||||||
// char name
|
// char name
|
||||||
if (current_char != incoming_args[2].toString()) {
|
if (current_char.toLower() != incoming_args[2].toString().toLower()) {
|
||||||
// Selected char is different from supplied folder name
|
// Selected char is different from supplied folder name
|
||||||
// This means the user is INI-swapped
|
// This means the user is INI-swapped
|
||||||
if (!area->iniswapAllowed()) {
|
if (!area->iniswapAllowed()) {
|
||||||
if (!server->characters.contains(incoming_args[2].toString()))
|
if (!server->characters.contains(incoming_args[2].toString(), Qt::CaseInsensitive))
|
||||||
return invalid;
|
return invalid;
|
||||||
}
|
}
|
||||||
qDebug() << "INI swap detected from " << getIpid();
|
qDebug() << "INI swap detected from " << getIpid();
|
||||||
|
Loading…
Reference in New Issue
Block a user