From 2f6910373ce6a9866949947f3d0ea19ab728843f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Mon, 21 Apr 2025 17:05:08 +0200 Subject: [PATCH] Fixed round number error --- lib/views/main_menu_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/views/main_menu_view.dart b/lib/views/main_menu_view.dart index 8719dfd..0c4db52 100644 --- a/lib/views/main_menu_view.dart +++ b/lib/views/main_menu_view.dart @@ -118,7 +118,7 @@ class _MainMenuViewState extends State { void calculateRoundNumbers() { for (var s in gameSessionArray) { - s.round = s.playerScores[0].length - 1; + s.round = s.playerScores[0].length; } } }