summaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
authorAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-30 14:27:28 +0200
committerAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-30 14:27:28 +0200
commitde4daa463d75403144ac63d3cd94aebf74fa0cb2 (patch)
tree943cfb0a53c98a0c2573fb748af29973e3642a39 /game
parent6d62f8c23e8ab76a2034dde08cff8302c9989fdc (diff)
Renaming bombs to mines.
Diffstat (limited to 'game')
-rw-r--r--game/game.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/game.py b/game/game.py
index 2a4efad..fefcf8f 100644
--- a/game/game.py
+++ b/game/game.py
@@ -34,7 +34,7 @@ class Game:
return False
case Action.FLAG:
self.board.flag(self.x, self.y)
- case Action.BOMB:
+ case Action.MINE:
self.board.flag(self.x, self.y, 10)
case Action.SAFE:
self.board.flag(self.x, self.y, 11)