From 7977a0ac12b9a6ca8dd7aa8b561317abf83f9b88 Mon Sep 17 00:00:00 2001 From: luke Date: Wed, 28 Mar 2018 23:36:49 -0700 Subject: [PATCH] Include how to use the new emoji --- app/dragon-bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/dragon-bot.py b/app/dragon-bot.py index ae5a8aa3..581ab526 100644 --- a/app/dragon-bot.py +++ b/app/dragon-bot.py @@ -201,12 +201,12 @@ async def on_message(message): await client.delete_message(message) await client.send_message( message.channel, - "emoji successfully uploaded! Heres how it looks in a sentence {}".format( + "emoji successfully uploaded! Heres how it looks in a sentence {}\nUse it with `:{}:`".format( await client.create_custom_emoji( server=message.server, name=emoji_name, image=open(core_utils.download_image(url, emoji_staging), "rb").read() - ) + ), emoji_name ) )