|
@@ -746,7 +746,7 @@ async def chess_board_handler(chess, id):
|
|
|
|
|
|
async def chess_moves_handler(chess, id):
|
|
|
try:
|
|
|
- moves = chess.moves(id)
|
|
|
+ moves = f"Последние два хода: {chess.moves(id, 2)}\nВсе ходы (первый ход - игрока): {chess.moves(id)}"
|
|
|
except KeyError:
|
|
|
return ["Нет активной игры."]
|
|
|
|
|
@@ -761,7 +761,7 @@ CHESS_COMMANDS = {
|
|
|
"skip": (chess_skip_handler, "Пропустить ход", 0),
|
|
|
"pass": (chess_pass_handler, "Сделать ход вместо вас", 0),
|
|
|
"board": (chess_board_handler, "Показать состояние доски", 0),
|
|
|
- "moves": (chess_moves_handler, "Показать историю ходов (первый ход - игрока)", 0),
|
|
|
+ "moves": (chess_moves_handler, "Показать историю ходов", 0),
|
|
|
}
|
|
|
|
|
|
|