Make maximum_statements actually get loaded in
Also has the effect of making it changeable with /reload, hooray!
This commit is contained in:
parent
4c5c40b497
commit
06b70a35d5
@ -53,9 +53,7 @@ void Server::start()
|
|||||||
|
|
||||||
loadServerConfig();
|
loadServerConfig();
|
||||||
loadCommandConfig();
|
loadCommandConfig();
|
||||||
|
|
||||||
maximum_statements = config.value("maximum_statements", 50).toInt();
|
|
||||||
|
|
||||||
proxy = new WSProxy(port, ws_port, this);
|
proxy = new WSProxy(port, ws_port, this);
|
||||||
if(ws_port != -1)
|
if(ws_port != -1)
|
||||||
proxy->start();
|
proxy->start();
|
||||||
@ -235,6 +233,7 @@ void Server::loadServerConfig()
|
|||||||
zalgo_tolerance = config.value("zalgo_tolerance", "3").toInt(&zalgo_tolerance_conversion_success);
|
zalgo_tolerance = config.value("zalgo_tolerance", "3").toInt(&zalgo_tolerance_conversion_success);
|
||||||
if (!zalgo_tolerance_conversion_success)
|
if (!zalgo_tolerance_conversion_success)
|
||||||
zalgo_tolerance = 3;
|
zalgo_tolerance = 3;
|
||||||
|
maximum_statements = config.value("maximum_statements", 10).toInt();
|
||||||
config.endGroup();
|
config.endGroup();
|
||||||
|
|
||||||
//Load dice values
|
//Load dice values
|
||||||
|
Loading…
Reference in New Issue
Block a user