From da8f244026d9751fdfe22c52ede73cb317296a08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= Date: Mon, 8 Jan 2024 21:29:31 +0000 Subject: [PATCH] Fix print (#48) Co-authored-by: raphael Reviewed-on: https://git.tipragot.fr/raphael/ponguito/pulls/48 --- src/scenes/game.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/scenes/game.py b/src/scenes/game.py index 88f329b..50ddf73 100644 --- a/src/scenes/game.py +++ b/src/scenes/game.py @@ -486,7 +486,6 @@ def __collision_with_ball(a: Entity, b: Entity): for player in a.world.query(LastPlayerTurn): del player[LastPlayerTurn] b.set(LastPlayerTurn()) - print(b) return __bounce_on_player(a, b) return True