diff options
Diffstat (limited to 'bot/exts/evergreen')
| -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, | 
