Purge zalgo_tolerance

This commit is contained in:
MangosArentLiterature 2021-04-29 22:19:30 -05:00
parent 4ca54e8761
commit 8ef6a3526b
4 changed files with 0 additions and 13 deletions

View File

@ -68,7 +68,6 @@ class ConfigManager {
QString name; //!< The name of the server as advertised on the server browser. QString name; //!< The name of the server as advertised on the server browser.
QString description; //!< The description of the server as advertised on the server browser. QString description; //!< The description of the server as advertised on the server browser.
bool advertise_server; //!< The server will only be announced to the master server (and thus appear on the master server list) if this is true. bool advertise_server; //!< The server will only be announced to the master server (and thus appear on the master server list) if this is true.
int zalgo_tolerance; //!< The amount of subscripts zalgo is stripped by.
}; };
/** /**

View File

@ -217,11 +217,6 @@ class Server : public QObject {
*/ */
QString modpass; QString modpass;
/**
* @brief The amount of subscripts zalgo is stripped by.
*/
int zalgo_tolerance;
/** /**
* @brief The highest value dice can have. * @brief The highest value dice can have.
*/ */

View File

@ -144,7 +144,6 @@ bool ConfigManager::loadServerSettings(server_settings* settings)
bool port_conversion_success; bool port_conversion_success;
bool ws_port_conversion_success; bool ws_port_conversion_success;
bool local_port_conversion_success; bool local_port_conversion_success;
bool zalgo_tolerance_conversion_success;
config.beginGroup("Options"); config.beginGroup("Options");
settings->ms_ip = settings->ms_ip =
config.value("ms_ip", "master.aceattorneyonline.com").toString(); config.value("ms_ip", "master.aceattorneyonline.com").toString();
@ -158,8 +157,6 @@ bool ConfigManager::loadServerSettings(server_settings* settings)
settings->description = settings->description =
config.value("server_description", "This is my flashy new server") config.value("server_description", "This is my flashy new server")
.toString(); .toString();
settings->zalgo_tolerance =
config.value("zalgo_tolerance", "3").toInt(&zalgo_tolerance_conversion_success);
config.endGroup(); config.endGroup();
if (!port_conversion_success || !ws_port_conversion_success || if (!port_conversion_success || !ws_port_conversion_success ||
!local_port_conversion_success) { !local_port_conversion_success) {

View File

@ -267,10 +267,6 @@ void Server::loadServerConfig()
MOTD = config.value("motd","MOTD is not set.").toString(); MOTD = config.value("motd","MOTD is not set.").toString();
auth_type = config.value("auth","simple").toString(); auth_type = config.value("auth","simple").toString();
modpass = config.value("modpass","").toString(); modpass = config.value("modpass","").toString();
bool zalgo_tolerance_conversion_success;
zalgo_tolerance = config.value("zalgo_tolerance", "3").toInt(&zalgo_tolerance_conversion_success);
if (!zalgo_tolerance_conversion_success)
zalgo_tolerance = 3;
bool maximum_statements_conversion_success; bool maximum_statements_conversion_success;
maximum_statements = config.value("maximum_statements", "10").toInt(&maximum_statements_conversion_success); maximum_statements = config.value("maximum_statements", "10").toInt(&maximum_statements_conversion_success);
if (!maximum_statements_conversion_success) if (!maximum_statements_conversion_success)