diff --git a/src/openrct2-ui/windows/ServerList.cpp b/src/openrct2-ui/windows/ServerList.cpp index fa285efcb9..dfef1b6bb9 100644 --- a/src/openrct2-ui/windows/ServerList.cpp +++ b/src/openrct2-ui/windows/ServerList.cpp @@ -588,7 +588,7 @@ static void server_list_fetch_servers_check(rct_window* w) { try { - auto [entries, statusText] = std::move(_fetchFuture.get()); + auto [entries, statusText] = _fetchFuture.get(); _serverList.AddRange(entries); _numPlayersOnline = _serverList.GetTotalPlayerCount(); _statusText = STR_X_PLAYERS_ONLINE; diff --git a/src/openrct2/network/ServerList.cpp b/src/openrct2/network/ServerList.cpp index 46f181ae3c..262e7162c9 100644 --- a/src/openrct2/network/ServerList.cpp +++ b/src/openrct2/network/ServerList.cpp @@ -305,7 +305,7 @@ std::future> ServerList::FetchLocalServerListAsync( { try { - auto entries = std::move(f.get()); + auto entries = f.get(); mergedEntries.insert(mergedEntries.begin(), entries.begin(), entries.end()); } catch (...)