diff --git a/afutc/game.py b/afutc/game.py index d3ff7f4..68f04d8 100644 --- a/afutc/game.py +++ b/afutc/game.py @@ -52,7 +52,9 @@ class Afutc: height_start = (height // 2) - (WIDTH // 2) try: print = lambda x: self.print((" " * height_start) + x + "\n") - row = str(self.score).center(self.board.shape[1], "═") + row = str(self.score) + row = f"╣ {row} ╠" + row = row.center(self.board.shape[1], "═") print("ANOTHER F TETRIS CLONE") print(f"╔{row}╗") for i, row in enumerate(self.board + self.current_move): @@ -66,8 +68,8 @@ class Afutc: row_str += " " print(f"║{row_str}║") row = "═" * (self.board.shape[1]) - # print(f"╚{row}╝") - print(str(self.pivot) + "\t" + self.debug) + print(f"╚{row}╝") + # print(str(self.pivot) + "\t" + self.debug) except CursesException: self.pause()