txlyre 2 달 전
부모
커밋
b84472be64
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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: