diff options
-rw-r--r-- | src/network/core/game_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/core/game_info.cpp b/src/network/core/game_info.cpp index a52de6c18..b4c487fba 100644 --- a/src/network/core/game_info.cpp +++ b/src/network/core/game_info.cpp @@ -43,7 +43,7 @@ std::string_view GetNetworkRevisionString() static std::string network_revision; if (network_revision.empty()) { - std::string network_revision = _openttd_revision; + network_revision = _openttd_revision; if (_openttd_revision_tagged) { /* Tagged; do not mangle further, though ensure it's not too long. */ if (network_revision.size() >= NETWORK_REVISION_LENGTH) network_revision.resize(NETWORK_REVISION_LENGTH - 1); |