diff options
author | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-30 14:27:28 +0200 |
---|---|---|
committer | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-30 14:27:28 +0200 |
commit | de4daa463d75403144ac63d3cd94aebf74fa0cb2 (patch) | |
tree | 943cfb0a53c98a0c2573fb748af29973e3642a39 /game/game.py | |
parent | 6d62f8c23e8ab76a2034dde08cff8302c9989fdc (diff) |
Renaming bombs to mines.
Diffstat (limited to 'game/game.py')
-rw-r--r-- | game/game.py | 2 |
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) |