Make maximum_statements actually get loaded in

Also has the effect of making it changeable with /reload, hooray!
This commit is contained in:
MangosArentLiterature 2021-04-15 11:53:20 -05:00 committed by GitHub
parent 4c5c40b497
commit 06b70a35d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,8 +54,6 @@ void Server::start()
loadServerConfig();
loadCommandConfig();
maximum_statements = config.value("maximum_statements", 50).toInt();
proxy = new WSProxy(port, ws_port, this);
if(ws_port != -1)
proxy->start();
@ -235,6 +233,7 @@ void Server::loadServerConfig()
zalgo_tolerance = config.value("zalgo_tolerance", "3").toInt(&zalgo_tolerance_conversion_success);
if (!zalgo_tolerance_conversion_success)
zalgo_tolerance = 3;
maximum_statements = config.value("maximum_statements", 10).toInt();
config.endGroup();
//Load dice values