diff options
author | 2021-06-04 18:20:52 +0530 | |
---|---|---|
committer | 2021-06-04 18:20:52 +0530 | |
commit | 36c574797f9ae4a385cedfc0071d6aeaf31b717f (patch) | |
tree | d7e68e7d4796ea9d5bbf3964187817858e23b3cd /bot/exts/evergreen/rps.py | |
parent | removed guild_only, now user can DM this command too! (diff) |
Update bot/exts/evergreen/rps.py
Co-authored-by: Xithrius <[email protected]>
Diffstat (limited to 'bot/exts/evergreen/rps.py')
-rw-r--r-- | bot/exts/evergreen/rps.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bot/exts/evergreen/rps.py b/bot/exts/evergreen/rps.py index 8d844234..e089ba85 100644 --- a/bot/exts/evergreen/rps.py +++ b/bot/exts/evergreen/rps.py @@ -9,8 +9,7 @@ from bot.bot import Bot CHOICES = ['rock', 'paper', 'scissor'] SHORT_CHOICES = ['r', 'p', 's'] -# Instead of putting bunch of conditions to check winner, -# we can just manage this dictionary +# Using a dictionary instead of conditions to check for the winner. WINNER_DICT = { 'r': { 'r': 0, |