summaryrefslogtreecommitdiff
path: root/game/game.py
diff options
context:
space:
mode:
Diffstat (limited to 'game/game.py')
-rw-r--r--game/game.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/game/game.py b/game/game.py
index d46d97b..0a36b0a 100644
--- a/game/game.py
+++ b/game/game.py
@@ -34,4 +34,8 @@ class Game:
return False
case Action.FLAG:
self.board.flag(self.x, self.y)
+ case Action.BOMB:
+ self.board.flag(self.x, self.y, 11)
+ case Action.SAFE:
+ self.board.flag(self.x, self.y, 12)
return True