summaryrefslogtreecommitdiff
path: root/tui/kbd.py
diff options
context:
space:
mode:
Diffstat (limited to 'tui/kbd.py')
-rw-r--r--tui/kbd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tui/kbd.py b/tui/kbd.py
index b6d2363..81840ae 100644
--- a/tui/kbd.py
+++ b/tui/kbd.py
@@ -57,7 +57,7 @@ class Kbd():
match action:
case Action.QUIT | Action.HINT:
return (action, x, y)
- case Action.OPEN | Action.FLAG | Action.BOMB | Action.SAFE:
+ case Action.OPEN | Action.FLAG | Action.MINE | Action.SAFE:
return (action, x, y)
case Action.UP:
y = y-1 if y > 0 else 0