diff --git a/Sources/Stim.Model/Game.cs b/Sources/Stim.Model/Game.cs index 4e2f6f3..588d1ff 100644 --- a/Sources/Stim.Model/Game.cs +++ b/Sources/Stim.Model/Game.cs @@ -88,7 +88,7 @@ namespace Model { sum += review.Rate; } - return sum / Reviews.Count; + return (float)(Math.Round((sum / Reviews.Count) * 2, MidpointRounding.AwayFromZero) / 2); } public void AddReview(Review review)