User input message contains help

This commit is contained in:
Yorick Barbanneau 2023-12-15 01:39:22 +01:00
parent e49e737ec0
commit 72b35e6ea3

View file

@ -32,7 +32,7 @@ class HumanPlayerEngine(PlayerEngine):
super()
move = None
while move is None:
user_input = input("Please enter player {} move: ".format(
user_input = input("Please enter player {} move, `print` to display board and `help` possible moves : ".format(
self.get_player_name(board._nextPlayer)
))
move = self.validate_input(user_input, board, player)