From 92781747bc6b71c5b47e2fc8a320f8cb52e1cecd Mon Sep 17 00:00:00 2001 From: Nick Dyer Date: Fri, 4 Jun 2021 16:56:33 -0400 Subject: [PATCH] removed a statement that reset the selected egg to 0 once backing out of the info screen --- pocket_friends/game_files/game.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pocket_friends/game_files/game.py b/pocket_friends/game_files/game.py index 090d4e9..9e6a12d 100644 --- a/pocket_friends/game_files/game.py +++ b/pocket_friends/game_files/game.py @@ -373,7 +373,6 @@ def game(): # Add the egg to the sprite list. all_sprites.add(egg) - selected = 0 def get_cursor_coords(selection): """ @@ -485,7 +484,7 @@ def game(): # Error screen. This appears when an invalid hardware state has been selected. all_sprites.empty() - frames_passed = 0 # Counter for frames, helps ensure the hardware isnt frozen. + frames_passed = 0 # Counter for frames, helps ensure the hardware isn't frozen. while running and game_state != 'title':