From ae0bb30e9d335621e87f4ce232e74af48f66e7b2 Mon Sep 17 00:00:00 2001 From: prashant Date: Mon, 31 May 2021 19:23:09 +0530 Subject: minor changes --- bot/exts/evergreen/rps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bot') 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: -- cgit v1.2.3