diff options
Diffstat (limited to 'tui/tui.py')
-rw-r--r-- | tui/tui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |