summaryrefslogtreecommitdiff
path: root/tui/tui.py
diff options
context:
space:
mode:
Diffstat (limited to 'tui/tui.py')
-rw-r--r--tui/tui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tui/tui.py b/tui/tui.py
index 4409134..d32af71 100644
--- a/tui/tui.py
+++ b/tui/tui.py
@@ -66,7 +66,7 @@ class Tui():
match action:
case Action.QUIT:
return (action, x, y)
- case Action.OPEN | Action.FLAG | Action.BOMB | Action.SAFE:
+ case Action.OPEN | Action.FLAG | Action.MINE | Action.SAFE:
if matrix[x][y] >= 10:
return (action, x, y)
case Action.HINT: