From 179fc8597bfddc232d1306bf3280bf5bc05e07c7 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sat, 23 Apr 2011 18:43:20 +0300 Subject: port to be not set to 0 from configuration --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index ffe877ebd..dd8d5d7d4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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"; -- cgit v1.2.3