Skip to content

Commit

Permalink
add help for Administration cog
Browse files Browse the repository at this point in the history
  • Loading branch information
hirusha-adi committed Aug 29, 2024
1 parent 2c9d695 commit f4c1a50
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions near/cogs/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
class Select(discord.ui.Select):
def __init__(self):
options = [
discord.SelectOption(label="Administration", emoji="💥", description="Administration commands"),
discord.SelectOption(label="Crypto", emoji="🪙", description="Cryptocurrencies Related Commands"),
discord.SelectOption(label="Encoding", emoji="🧾", description="Encoding and Hashing Related Commands"),
discord.SelectOption(label="Fake Information", emoji="👨‍🦰", description="Fake Information Generating Commands"),
Expand All @@ -40,6 +41,7 @@ async def callback(self, interaction: discord.Interaction):
embed.set_footer(text=f"Requested by {interaction.user.name}")

thumbnails = {
"Administration": "https://cdn.discordapp.com/attachments/1278527700482527273/1278527720132968458/admin-3d-illustration-icon-png.png",
"Crypto": "https://cdn.discordapp.com/attachments/940889393974104084/1073538553335783454/7047060.png",
"Encoding": "https://cdn.discordapp.com/attachments/940889393974104084/1073538746806444103/2362335.png",
"Fake Information": "https://cdn.discordapp.com/attachments/940889393974104084/1073538885986033704/4410174.png",
Expand All @@ -51,6 +53,9 @@ async def callback(self, interaction: discord.Interaction):
}

commands = {
"Administration": [
("/move", "Move users from one voice channel to another"),
],
"Crypto": [
("/btc", "Get the current Bitcoin Rates"),
("/eth", "Get the current Etherium Rates"),
Expand Down

0 comments on commit f4c1a50

Please sign in to comment.