From e20dbbf6eefa8b4eb80acebc54b36ef21a98fdc4 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Tue, 12 Apr 2011 17:42:17 +0300 Subject: fixed port setting not being loaded from configuration file for client --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 28697146f..117670366 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1704,7 +1704,7 @@ int main(int argc, char *argv[]) u16 port = 30000; if(cmd_args.exists("port")) port = cmd_args.getU16("port"); - else if(cmd_args.exists("port")) + else if(g_settings.exists("port")) port = g_settings.getU16("port"); // Map directory -- cgit v1.2.3