diff --git a/Assets/Scripts/MatchLogic.cs b/Assets/Scripts/MatchLogic.cs index 0de4b1c..1efd065 100644 --- a/Assets/Scripts/MatchLogic.cs +++ b/Assets/Scripts/MatchLogic.cs @@ -99,6 +99,13 @@ namespace GameLogic p1.Value.RoundsWon > p2.Value.RoundsWon ? p1 : p2).Key; Opponents = mps.Keys.Where(player => player != Winner).ToList(); } + else + { + foreach (var statistic in mps.Values) + { + statistic.IsOut = false; + } + } } } } \ No newline at end of file