aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/rps.py
diff options
context:
space:
mode:
authorGravatar Prashant <[email protected]>2021-06-04 18:20:52 +0530
committerGravatar GitHub <[email protected]>2021-06-04 18:20:52 +0530
commit36c574797f9ae4a385cedfc0071d6aeaf31b717f (patch)
treed7e68e7d4796ea9d5bbf3964187817858e23b3cd /bot/exts/evergreen/rps.py
parentremoved 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.py3
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,