diff --git a/emojiinfo/emojiinfo.py b/emojiinfo/emojiinfo.py index 1b0e640..156b1d0 100644 --- a/emojiinfo/emojiinfo.py +++ b/emojiinfo/emojiinfo.py @@ -5,7 +5,7 @@ import aiohttp import discord from colorthief import ColorThief from red_commons.logging import RedTraceLogger, getLogger -from redbot.core import commands +from redbot.core import app_commands, commands from redbot.core.bot import Red from redbot.core.utils.chat_formatting import bold, humanize_list @@ -17,7 +17,7 @@ class EmojiInfo(commands.Cog): __author__: list[str] = ["SeaswimmerTheFsh"] __version__: str = "1.0.0" - __documentation__: str = "https://seacogs.coastalcommits.com/emoji/" + __documentation__: str = "https://seacogs.coastalcommits.com/emojiinfo/" def __init__(self, bot: Red) -> None: super().__init__() @@ -54,6 +54,10 @@ class EmojiInfo(commands.Cog): return color @commands.hybrid_command(name="emoji") + @app_commands.describe( + emoji="What emoji would you like to get information on?", + ephemeral="Would you like the response to be hidden?" + ) async def emoji(self, ctx: commands.Context, emoji: str, ephemeral: bool = False) -> None: """Retrieve information about an emoji.""" await ctx.defer(ephemeral=ephemeral)