This commit is contained in:
JerryXiao 2019-01-15 16:13:32 +08:00
parent c2bea64ca6
commit 2dcd0fb829
Signed by: Jerry
GPG Key ID: 9D9CE43650FF2BAA
1 changed files with 2 additions and 1 deletions

View File

@ -354,7 +354,8 @@ def handle_button_click(bot, update):
# if this is the first move, there's no mmap
if mmap is not None:
game.save_action(user, (row, col))
update_keyboard_request(bot, bhash, game, chat_id, msg.message_id)
if not array_equal(board.map, mmap):
update_keyboard_request(bot, bhash, game, chat_id, msg.message_id)
(s_op, s_is, s_3bv) = board.gen_statistics()
ops_count = game.actions_sum()
ops_list = game.get_actions()