Index: binaries/data/mods/public/gui/common/gamedescription.js =================================================================== --- binaries/data/mods/public/gui/common/gamedescription.js +++ binaries/data/mods/public/gui/common/gamedescription.js @@ -223,6 +223,19 @@ { let titles = []; + if (g_GameAttributes.settings.PlayerData.filter(p => p && !p.AI).length == 2 && (Engine.HasXmppClient() || g_IsReplay)) + titles.push( + g_GameAttributes.settings.RatingEnabled ? + { + "label": translate("Rated game"), + "value": translate("When the winner of this match is determined, the lobby score will be adapted.") + } : + { + "label": translate("Unrated game"), + "value": translate("The result of the game will not influence the lobby score.") + } + ); + let victoryIdx = g_VictoryConditions.Name.indexOf(g_GameAttributes.settings.GameType || g_VictoryConditions.Default); if (victoryIdx != -1) { @@ -274,13 +287,6 @@ }); } - if (g_GameAttributes.settings.RatingEnabled && - g_GameAttributes.settings.PlayerData.length == 2) - titles.push({ - "label": translate("Rated game"), - "value": translate("When the winner of this match is determined, the lobby score will be adapted.") - }); - if (g_GameAttributes.settings.LockTeams) titles.push({ "label": translate("Locked Teams"),