Fix: Server listening on the ms port instead of the actual port

This commit is contained in:
likeawindrammer 2020-08-28 07:02:19 -06:00
parent 68fc2a44b3
commit c91d3a50a6

View File

@ -203,7 +203,7 @@ bool ConfigManager::loadServerSettings(server_settings* settings)
settings->ms_ip =
config->value("ms_ip", "master.aceattorneyonline.com").toString();
settings->port =
config->value("ms_port", "27016").toInt(&port_conversion_success);
config->value("port", "27016").toInt(&port_conversion_success);
settings->ws_port =
config->value("webao_port", "27017").toInt(&ws_port_conversion_success);
settings->local_port =