From 46ae4cc61471d4426492eb8f890d0e888b211f9f Mon Sep 17 00:00:00 2001 From: Prashant <37273899+OculusMode@users.noreply.github.com> Date: Fri, 4 Jun 2021 22:51:59 +0530 Subject: removed upper case on printing result and made minor grammar changes. Co-authored-by: Xithrius <15021300+Xithrius@users.noreply.github.com> --- bot/exts/evergreen/rps.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bot') diff --git a/bot/exts/evergreen/rps.py b/bot/exts/evergreen/rps.py index 13185470..49561e4b 100644 --- a/bot/exts/evergreen/rps.py +++ b/bot/exts/evergreen/rps.py @@ -50,12 +50,12 @@ class RPS(commands.Cog): player_result = WINNER_DICT[move[0]][bot_move[0]] if player_result == 0: - message_string = f"{player_mention} You and Sir Lancebot played {bot_move.upper()}, It's a tie." + message_string = f"{player_mention} You and Sir Lancebot played {bot_move}, it's a tie." await channel.send(message_string) elif player_result == 1: - await channel.send(f"Sir Lancebot played {bot_move.upper()}! {player_mention} Won!") + await channel.send(f"Sir Lancebot played {bot_move}! {player_mention} won!") else: - await channel.send(f"Sir Lancebot played {bot_move.upper()}! {player_mention} Lost!") + await channel.send(f"Sir Lancebot played {bot_move}! {player_mention} lost!") def setup(bot: Bot) -> None: -- cgit v1.2.3