From 7d7281db06db7d30c45ebe620bb2267b6e6be7fc Mon Sep 17 00:00:00 2001 From: Tomek Sidoruk Date: Tue, 4 May 2021 16:46:38 +0200 Subject: [PATCH] remove unwanted shortingof sllep --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index dbb3abd..c644a23 100644 --- a/main.py +++ b/main.py @@ -168,11 +168,11 @@ def main(): elif action == const.Action.GO: minefield.agent.go() - time.sleep(const.ACTION_INTERVAL/5) + time.sleep(const.ACTION_INTERVAL) else: running = False - time.sleep(const.ACTION_INTERVAL/5) + time.sleep(const.ACTION_INTERVAL) #'for event in pygame.event.get(): # if event.type == pygame.QUIT: # running = False