Merge pull request #16 from AttorneyOnline/feature/iniswap_lock
Add rudimentary iniswap prevention
This commit is contained in:
commit
a78a560846
@ -1,5 +1,9 @@
|
|||||||
[Basement]
|
[Basement]
|
||||||
background=gs4
|
background=gs4
|
||||||
|
protected_area=true
|
||||||
|
iniswap_allowed=false
|
||||||
|
|
||||||
[Courtroom 1]
|
[Courtroom 1]
|
||||||
background=gs4
|
background=gs4
|
||||||
|
protected_area=false
|
||||||
|
iniswap_allowed=true
|
@ -27,7 +27,8 @@ AreaData::AreaData(QStringList characters, QString p_name, int p_index)
|
|||||||
QSettings areas_ini("config/areas.ini", QSettings::IniFormat);
|
QSettings areas_ini("config/areas.ini", QSettings::IniFormat);
|
||||||
areas_ini.beginGroup(p_name);
|
areas_ini.beginGroup(p_name);
|
||||||
background = areas_ini.value("background", "gs4").toString();
|
background = areas_ini.value("background", "gs4").toString();
|
||||||
is_protected = areas_ini.value("protected_area").toBool();
|
is_protected = areas_ini.value("protected_area", "false").toBool();
|
||||||
|
iniswap_allowed = areas_ini.value("iniswap_allowed", "true").toBool();
|
||||||
bg_locked = areas_ini.value("bg_locked", "false").toBool();
|
bg_locked = areas_ini.value("bg_locked", "false").toBool();
|
||||||
areas_ini.endGroup();
|
areas_ini.endGroup();
|
||||||
player_count = 0;
|
player_count = 0;
|
||||||
|
@ -363,10 +363,10 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
|
|||||||
if (current_char != incoming_args[2].toString()) {
|
if (current_char != incoming_args[2].toString()) {
|
||||||
// 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
|
||||||
// TODO: ini swap locking
|
if (!area->iniswap_allowed) {
|
||||||
// if no iniswap allowed then
|
if (!server->characters.contains(incoming_args[2].toString()))
|
||||||
// if (!server->characters.contains(incoming_args[2].toString()))
|
return invalid;
|
||||||
// return invalid;
|
}
|
||||||
qDebug() << "INI swap detected from " << getIpid();
|
qDebug() << "INI swap detected from " << getIpid();
|
||||||
}
|
}
|
||||||
args.append(incoming_args[2].toString());
|
args.append(incoming_args[2].toString());
|
||||||
|
Loading…
Reference in New Issue
Block a user