diff options
| author | 2021-05-10 01:58:31 +0530 | |
|---|---|---|
| committer | 2021-05-10 01:58:31 +0530 | |
| commit | 2eda11d5110103d65ee684f4626d7c1ae59b32c9 (patch) | |
| tree | fbbbcf61ef0797722a1ea8136aaa412cd6283365 /bot/exts/easter/egg_decorating.py | |
| parent | Fix Bug:Paginated embed image gets carried to next page (diff) | |
| parent | Merge pull request #724 from ToxicKidz/fix/mosaic-command (diff) | |
Pull upstream and resolve conflicts.
Diffstat (limited to 'bot/exts/easter/egg_decorating.py')
| -rw-r--r-- | bot/exts/easter/egg_decorating.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bot/exts/easter/egg_decorating.py b/bot/exts/easter/egg_decorating.py index b18e6636..a847388d 100644 --- a/bot/exts/easter/egg_decorating.py +++ b/bot/exts/easter/egg_decorating.py @@ -10,6 +10,8 @@ import discord from PIL import Image from discord.ext import commands +from bot.utils import helpers + log = logging.getLogger(__name__) with open(Path("bot/resources/evergreen/html_colours.json"), encoding="utf8") as f: @@ -65,7 +67,7 @@ class EggDecorating(commands.Cog): if value: colours[idx] = discord.Colour(value) else: - invalid.append(colour) + invalid.append(helpers.suppress_links(colour)) if len(invalid) > 1: return await ctx.send(f"Sorry, I don't know these colours: {' '.join(invalid)}") |