From c928ec0a26229ebe4622eba4ac80050a00c2bc09 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sun, 9 Jan 2022 02:19:48 -0500 Subject: [PATCH] Now use the latest libstormgames. --- libstormgames | 2 +- numnastics | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libstormgames b/libstormgames index 48217dd..155ed6e 160000 --- a/libstormgames +++ b/libstormgames @@ -1 +1 @@ -Subproject commit 48217dd63efea44513a55d4e267601c608c5ca8e +Subproject commit 155ed6ec390f5e6109b3358683e8f5d1ed367db0 diff --git a/numnastics b/numnastics index 15f8465..82a6b20 100755 --- a/numnastics +++ b/numnastics @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -from libstormgames.libstormgames import * +from libstormgames import * # Initial variable settings mode = "menu" @@ -14,6 +14,7 @@ def game(mode): tries = 0 numberList = list("123456789") random.shuffle(numberList) + speak(' '.join(numberList)) while ''.join(numberList) != "123456789": event = pygame.event.wait() if event.type == pygame.KEYDOWN: