mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
fixed port setting not being loaded from configuration file for client
This commit is contained in:
parent
08139f32f9
commit
e20dbbf6ee
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue