Browse Source

updated utils comments.

tags/v1.4.0
roxie 6 years ago
parent
commit
4ae00b0299
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      cogs/util.py

+ 4
- 3
cogs/util.py View File

@@ -134,11 +134,12 @@ class Util():
async def upload_err(self, ctx, error):
return await ctx.send("File couldn't be uploaded. {}".format(error))


@bot.command(aliases=["emoji"]) # This command will only work with normal emoji once I can put in something to get the svgs for twiemoji and convert em
@bot.command(aliases=["emoji"])
async def emote(self, ctx, emote: discord.Emoji = None):
"""
Uploads the emote given. Useful for downloading emotes. ONLY WORKS WITH CUSTOM EMOJI
Uploads the emote given. Useful for downloading emotes.
Usage:
;emote [emote]
"""
if emote.animated:
imgname = "emote.gif"

Loading…
Cancel
Save