From 1e57cdc806c1136fd8b07c831dca3ae55a0cd938 Mon Sep 17 00:00:00 2001 From: CoCo_Sol Date: Mon, 30 Oct 2023 16:50:09 +0100 Subject: [PATCH] changement du nb d'essais au tricheur --- src/scenes/tricheur.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scenes/tricheur.py b/src/scenes/tricheur.py index 47a0be6..a1cbc46 100644 --- a/src/scenes/tricheur.py +++ b/src/scenes/tricheur.py @@ -107,7 +107,7 @@ def __initialize_world(world: World): TextSize(100), NombreEssaiText(), COLOR_TEXT, - Text("il reste : 7 essais"), + Text("il reste : 10 essais"), ) # Bouton pour revenir au menu @@ -120,7 +120,7 @@ def __initialize_world(world: World): ) # Les ressources. - world[NombreEssai] = NombreEssai(7) + world[NombreEssai] = NombreEssai(10) world[RandomNumber] = RandomNumber(random.randint(0, 99)) world[IsRunning] = IsRunning()