txlyre 1 day ago
parent
commit
b84472be64
1 changed files with 1 additions and 1 deletions
  1. 1 1
      commands.py

+ 1 - 1
commands.py

@@ -688,7 +688,7 @@ async def chess_move_handler(chess, id, move):
 
 async def chess_undo_handler(chess, id):
     try:
-        await chess.undo(id)
+        chess.undo(id)
     except KeyError:
         return ["Нет активной игры."]
     except IndexError: