diff options
-rw-r--r-- | bot/seasons/evergreen/fun.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bot/seasons/evergreen/fun.py b/bot/seasons/evergreen/fun.py index b531e82f..afe37b75 100644 --- a/bot/seasons/evergreen/fun.py +++ b/bot/seasons/evergreen/fun.py @@ -16,6 +16,9 @@ class Fun: @commands.command() async def roll(self, ctx, num_rolls: int = 1): + """ + Outputs a number of random dice emotes (up to 6) + """ output = "" if num_rolls > 6: num_rolls = 6 |