From e11090e2b54544b23f84e496ef479a14a3c8be7f Mon Sep 17 00:00:00 2001 From: Dylan Dizon Date: Thu, 8 Nov 2018 14:31:57 -0500 Subject: [PATCH] Add cross mark emoticon to error response --- src/cogs/booru.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cogs/booru.py b/src/cogs/booru.py index 6fe0b1d..93366c0 100644 --- a/src/cogs/booru.py +++ b/src/cogs/booru.py @@ -431,7 +431,7 @@ class MsG: await ctx.send(f'`{e}` **too large.** Maximum is 8 MB') await ctx.message.add_reaction('\N{CROSS MARK}') except err.HTTPException: - await ctx.send('**The image database returned an unexpected result.** It may be offline') + await ctx.send('\N{CROSS MARK} **The image database returned an unexpected result.** It may be offline') await ctx.message.add_reaction('\N{CROSS MARK}') @cmds.command(name='reversify', aliases=['revify', 'risify', 'rify']) @@ -510,7 +510,7 @@ class MsG: await dest.send('`{}` **invalid limit.** Query limited to 30'.format(e)) await ctx.message.add_reaction('\N{CROSS MARK}') except err.HTTPException: - await dest.send('**The image database returned an unexpected result.** It may be offline') + await dest.send('\N{CROSS MARK} **The image database returned an unexpected result.** It may be offline') await ctx.message.add_reaction('\N{CROSS MARK}') async def _reversify(self):