From 0c53100e7bcd2d238b2cd972129d6bf4116441c7 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sun, 23 Jul 2017 21:15:01 -0500 Subject: [PATCH] Raise limit of dice to 30 --- cogs/misc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/misc.py b/cogs/misc.py index 82e9017..cb177f7 100644 --- a/cogs/misc.py +++ b/cogs/misc.py @@ -315,8 +315,8 @@ class Miscallaneous: # Since we did not try to convert to int before, do it now after we # have it set dice = int(dice) - if dice > 10: - await ctx.send("I'm not rolling more than 10 dice, I have tiny hands") + if dice > 30: + await ctx.send("I'm not rolling more than 30 dice, I have tiny hands") return if num > 100: await ctx.send("What die has more than 100 sides? Please, calm down")