diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/constants.py | 12 | ||||
| -rw-r--r-- | bot/exts/evergreen/fun.py | 2 | 
2 files changed, 7 insertions, 7 deletions
| diff --git a/bot/constants.py b/bot/constants.py index 295bb90b..6605882d 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -108,12 +108,12 @@ class Emojis:      trashcan = "<:trashcan:637136429717389331>"      ok_hand = ":ok_hand:" -    terning1 = "<:terning1:431249668983488527>" -    terning2 = "<:terning2:462339216987127808>" -    terning3 = "<:terning3:431249694467948544>" -    terning4 = "<:terning4:579980271475228682>" -    terning5 = "<:terning5:431249716328792064>" -    terning6 = "<:terning6:431249726705369098>" +    dice_1 = "<:dice_1:755891608859443290>" +    dice_2 = "<:dice_2:755891608741740635>" +    dice_3 = "<:dice_3:755891608251138158>" +    dice_4 = "<:dice_4:755891607882039327>" +    dice_5 = "<:dice_5:755891608091885627>" +    dice_6 = "<:dice_6:755891607680843838>"      issue = "<:IssueOpen:629695470327037963>"      issue_closed = "<:IssueClosed:629695470570307614>" diff --git a/bot/exts/evergreen/fun.py b/bot/exts/evergreen/fun.py index 36a13ac0..1a7ebb90 100644 --- a/bot/exts/evergreen/fun.py +++ b/bot/exts/evergreen/fun.py @@ -41,7 +41,7 @@ class Fun(Cog):          elif num_rolls < 1:              output = ":no_entry: You must roll at least once."          for _ in range(num_rolls): -            terning = f"terning{random.randint(1, 6)}" +            terning = f"dice_{random.randint(1, 6)}"              output += getattr(Emojis, terning, '')          await ctx.send(output) | 
