diff options
author | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-17 10:51:08 +0200 |
---|---|---|
committer | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-17 10:51:08 +0200 |
commit | 823877510422f6ce2952de5cc40edd0d62d813e4 (patch) | |
tree | 1e68d682a3f59dea0a87aa83c9bb1c73aeb2badb /game | |
parent | 899d0997a6badae6535e9f69e0f6d70f3a272578 (diff) |
Adding BadBot for hinting.
Diffstat (limited to 'game')
-rw-r--r-- | game/game.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/game.py b/game/game.py index 0a36b0a..5ccbab9 100644 --- a/game/game.py +++ b/game/game.py @@ -35,7 +35,7 @@ class Game: case Action.FLAG: self.board.flag(self.x, self.y) case Action.BOMB: - self.board.flag(self.x, self.y, 11) + self.board.flag(self.x, self.y, 10) case Action.SAFE: - self.board.flag(self.x, self.y, 12) + self.board.flag(self.x, self.y, 11) return True |