diff --git a/lua/ui/lobby/lobby.lua b/lua/ui/lobby/lobby.lua index 9c72dc6d7f..5cabede416 100644 --- a/lua/ui/lobby/lobby.lua +++ b/lua/ui/lobby/lobby.lua @@ -2365,8 +2365,8 @@ function ShowGameQuality() end end - -- Nothing to do if we have only one team... - if table.getn(teams:getTeams()) < 2 then + -- Rating only meaningful in games with 2 teams + if table.getn(teams:getTeams()) ~= 2 then return end @@ -6834,4 +6834,4 @@ function InitHostUtils() gameInfo.Observers = WatchedValueArray(LobbyComm.maxPlayerSlots) end } -end \ No newline at end of file +end