diff options
author | 2021-05-31 19:23:09 +0530 | |
---|---|---|
committer | 2021-05-31 19:23:09 +0530 | |
commit | ae0bb30e9d335621e87f4ce232e74af48f66e7b2 (patch) | |
tree | 26cb4fe8e1f5d4519a893ec11e6005194637b8fa /bot/exts | |
parent | adeed rps command (diff) |
minor changes
Diffstat (limited to 'bot/exts')
-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: |