fix(emojiinfo): added descriptions to the application command parameters
This commit is contained in:
parent
d65d04fa7a
commit
aa6e0d7590
1 changed files with 6 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue