port to be not set to 0 from configuration

This commit is contained in:
Perttu Ahola 2011-04-23 18:43:20 +03:00
parent 1995b59320
commit 179fc8597b
1 changed files with 2 additions and 0 deletions

View File

@ -1076,6 +1076,8 @@ int main(int argc, char *argv[])
port = cmd_args.getU16("port");
else if(g_settings.exists("port"))
port = g_settings.getU16("port");
if(port == 0)
port = 30000;
// Map directory
std::string map_dir = porting::path_userdata+"/map";