diff --git a/main.py b/main.py index 507148a..e347975 100644 --- a/main.py +++ b/main.py @@ -638,7 +638,7 @@ async def show_game_over(score): overlay.fill((0, 0, 0)) screen.blit(overlay, (0, 0)) font_big = pygame.font.SysFont(None, 72) - message = f"Spiel beendet! Punkte: {int(score)}%" + message = f"Spiel beendet! Punkte: {int(score)}%. Drücke die Leertaste um deine Punkte zu übermitteln." text = font_big.render(message, True, (255, 255, 255)) screen.blit(text, (SCREEN_WIDTH // 2 - text.get_width() // 2, SCREEN_HEIGHT // 2 - text.get_height() // 2)) pygame.display.flip()