aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar prashant <[email protected]>2021-05-31 19:23:09 +0530
committerGravatar prashant <[email protected]>2021-05-31 19:23:09 +0530
commitae0bb30e9d335621e87f4ce232e74af48f66e7b2 (patch)
tree26cb4fe8e1f5d4519a893ec11e6005194637b8fa /bot
parentadeed rps command (diff)
minor changes
Diffstat (limited to 'bot')
-rw-r--r--bot/exts/evergreen/rps.py2
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: