Skip to content

Commit

Permalink
[Discord] Add title and title URL to bigmoji command response embed
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Dec 16, 2023
1 parent 2651926 commit 902d004
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Discord/cogs/emoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,11 @@ class EmojiCog(commands.GroupCog, group_name = "emoji", name = "Emoji"):
@commands.command(aliases = ["bigmote"])
async def bigmoji(self, ctx, emoji: discord.PartialEmoji):
"""Enlarge custom emoji"""
await ctx.embed_reply(image_url = emoji.url)
await ctx.embed_reply(
title = emoji.name,
title_url = emoji.url,
image_url = emoji.url
)

@commands.command(aliases = ["emotify"])
async def emojify(self, ctx, *, text: str):
Expand Down

0 comments on commit 902d004

Please sign in to comment.