diff options
author | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-14 16:02:12 +0200 |
---|---|---|
committer | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-14 16:02:12 +0200 |
commit | 899d0997a6badae6535e9f69e0f6d70f3a272578 (patch) | |
tree | 05edf2028de4fa4294e5bcb8fd6c81bbdf849000 /tui/tui.py | |
parent | 53eea87fe65c5c4f063664c424d4b49176a27984 (diff) |
Adding the idiot bot for giving idiot hints.
Diffstat (limited to 'tui/tui.py')
-rw-r--r-- | tui/tui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -98,7 +98,7 @@ class Tui(): x = len(matrix)-1 case Action.HINT: if self.bot is not None: - return (Action.BOMB, 0, 0) + return self.bot.hint(matrix, x, y) self.draw_matrix(matrix, x, y) |