Fix print (#48)

Co-authored-by: raphael <lauray@outlook.fr>
Reviewed-on: #48
This commit is contained in:
Raphaël 2024-01-08 21:29:31 +00:00
parent 845c7cd6d8
commit da8f244026

View file

@ -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