summaryrefslogtreecommitdiff
path: root/tui
diff options
context:
space:
mode:
authorAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-12 09:21:04 +0200
committerAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-12 09:21:04 +0200
commitb6c689abc6d5860671c45460a99b487eb6872e22 (patch)
treec834adbbdef5500bd39e3ee123acba3049317f34 /tui
parentf3a475d4744c4c2b631c24f4875b5c845baa1f93 (diff)
Making checks that area about to be uncovered is not uncovered already.
Diffstat (limited to 'tui')
-rw-r--r--tui/tui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tui/tui.py b/tui/tui.py
index ed997a4..2081711 100644
--- a/tui/tui.py
+++ b/tui/tui.py
@@ -39,8 +39,8 @@ class Tui():
def draw_tile(self, tile, hilighted):
chars_and_colors = (
- (' ', 7, 0), ('1', 10, 0), ('2', 12, 0),
- ('3', 11, 0), ('4', 9, 0), ('5', 9, 0),
+ (' ', 7, 0), ('1', 10, 0), ('2', 11, 0),
+ ('3', 13, 0), ('4', 9, 0), ('5', 9, 0),
('6', 9, 0), ('7', 9, 0), ('8', 9, 0),
('¤', 15, 1), ('#', 8, 7)
)