From 220f5759e9e4e689f659e1578725a175e5623ed9 Mon Sep 17 00:00:00 2001 From: Brosef Date: Fri, 27 Jun 2025 07:53:45 +0100 Subject: [PATCH] Removed redundant "important function" call --- game.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/game.py b/game.py index 56c332e..020f27c 100644 --- a/game.py +++ b/game.py @@ -141,9 +141,6 @@ class Game(gameUtils.Game): Ran once per frame, put your drawing code and any game logic that should be ran once per frame in here. """ - - # Don't remove this. It does important things. :3 - super().update() self.surf.fill((0, 0, 0)) #sets the background colour self.surf.blit(gameUtils.centre(self.currentCaptchaImg, self.size)) #draws the text to center of the screen