From d464a9b5b785057823311799d576a01756214d74 Mon Sep 17 00:00:00 2001 From: miteruzo Date: Sun, 3 Dec 2023 07:20:07 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=82=E3=81=A3=E3=81=A8=E5=A4=AA=E3=81=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index 87761a3..e594366 100644 --- a/main.py +++ b/main.py @@ -64,11 +64,12 @@ class Main: time.sleep (10) - screen.blit ( - system_font.render ( - f'live_chat.is_alive () == {live_chat.is_alive ()}', - True, (0, 0, 0)), - (0, 0)) + for i in range (2): + screen.blit ( + system_font.render ( + f'live_chat.is_alive () == {live_chat.is_alive ()}', + True, (0, 0, 0)), + (i, i)) pygame.display.update ()