The mighty -4 return...

This commit is contained in:
KikooDX 2019-11-06 11:20:08 +01:00
parent b4dc69ced1
commit d35e62b1d7
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class Screen:
print(to_print)
if ask_for_input or fancy:
line = ""
for cell in self._mat[-1][:-1]:
for cell in self._mat[-1][:-5]:
line += cell
return input(line if fancy else "> ")
else: