diff options
-rw-r--r-- | bot/exts/evergreen/rps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/rps.py b/bot/exts/evergreen/rps.py index 3bb69871..df77f032 100644 --- a/bot/exts/evergreen/rps.py +++ b/bot/exts/evergreen/rps.py @@ -51,7 +51,7 @@ class Game: return await self.channel.send("Please make a move.") action = action.lower() if action not in choices and action not in short_choices: - return await self.channel.send(f"Invalid move. Please make from options: {' '.join(choices)}") + return await self.channel.send(f"Invalid move. Please make move from options: {' '.join(choices)}") bot_move = self.make_move() player_result = self.get_winner(action[0], bot_move[0]) if player_result == 0: |