From 6923707dbead6c15f5a4012362eac1aaf97e9444 Mon Sep 17 00:00:00 2001 From: Claude Brisson Date: Thu, 5 Sep 2024 14:00:49 +0200 Subject: [PATCH] Fix default round --- view-webapp/src/main/webapp/tour.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view-webapp/src/main/webapp/tour.html b/view-webapp/src/main/webapp/tour.html index 78c653e..784a6b9 100644 --- a/view-webapp/src/main/webapp/tour.html +++ b/view-webapp/src/main/webapp/tour.html @@ -29,7 +29,7 @@ #set($lastCompleteRound = 0) #foreach($r in [1..$tour.rounds]) #set($stats = $tour.stats[$r - 1]) - #if($stats.ready == $stats.games) + #if($stats.games > 0 && $stats.ready == $stats.games) #set($lastCompleteRound = $r) #else #break