1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-19 20:49:11 +00:00

Fix: [Network] don't mark the last-joined server as manual (#9239)

This commit is contained in:
Patric Stout
2021-05-11 12:26:30 +02:00
committed by GitHub
parent 36e22f3a7b
commit 9841ebb0bd

View File

@@ -476,7 +476,7 @@ public:
EM_ASM(if (window["openttd_server_list"]) openttd_server_list()); EM_ASM(if (window["openttd_server_list"]) openttd_server_list());
#endif #endif
this->last_joined = NetworkAddServer(_settings_client.network.last_joined); this->last_joined = NetworkAddServer(_settings_client.network.last_joined, false);
this->server = this->last_joined; this->server = this->last_joined;
this->requery_timer.SetInterval(MILLISECONDS_PER_TICK); this->requery_timer.SetInterval(MILLISECONDS_PER_TICK);