From 4447e713a6091527412c8a87b48315d3dd62a2c4 Mon Sep 17 00:00:00 2001
From: kirbylife <gabriel13m@gmail.com>
Date: Thu, 7 Nov 2019 20:20:45 -0600
Subject: [PATCH] fixed interface

---
 afutc/game.py | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

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()