Minor changes

This commit is contained in:
Shadow15510 2021-11-24 21:27:05 +01:00
parent 0d16ef807b
commit 8ccdfbca89
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# Asci (version 1.5.3)
# Asci (version 1.5.4)
class Screen:
def __init__(self, screen_width=21, screen_height=6):
@ -271,6 +271,7 @@ def read_event(xp, event):
def print_text(text):
for i in text_formater(text):
if not i: continue
print("\n" * 7)
print(i)
input()