mirror of
https://github.com/neoarz/Syntrel.git
synced 2025-12-25 11:40:12 +01:00
feat: pairing command and update SideStore help
Introduces a new 'pairing' command for troubleshooting pairing file issues in SideStore. Updates help.py to include the 'sidestore' category and related commands, and refines embed footers in code.py, server.py, and sparse.py for consistency.
This commit is contained in:
@@ -13,7 +13,7 @@ class Help(commands.Cog, name="help"):
|
||||
interaction: discord.Interaction,
|
||||
current: str,
|
||||
) -> list[app_commands.Choice[str]]:
|
||||
categories = ["general", "fun", "moderation", "template", "owner"]
|
||||
categories = ["general", "fun", "moderation", "template", "owner", "sidestore"]
|
||||
|
||||
suggestions = []
|
||||
for category in categories:
|
||||
@@ -56,6 +56,15 @@ class Help(commands.Cog, name="help"):
|
||||
"warnings": "moderation",
|
||||
"archive": "moderation",
|
||||
|
||||
"sidestore": "sidestore",
|
||||
"refresh": "sidestore",
|
||||
"code": "sidestore",
|
||||
"crash": "sidestore",
|
||||
"pairing": "sidestore",
|
||||
"server": "sidestore",
|
||||
"half": "sidestore",
|
||||
"sparse": "sidestore",
|
||||
|
||||
"sync": "owner",
|
||||
"cog_management": "owner",
|
||||
"shutdown": "owner",
|
||||
@@ -68,7 +77,8 @@ class Help(commands.Cog, name="help"):
|
||||
"fun": "Funny commands",
|
||||
"moderation": "Administration commands",
|
||||
"template": "Template commands",
|
||||
"owner": "Owner commands"
|
||||
"owner": "Owner commands",
|
||||
"sidestore": "SideStore troubleshooting commands"
|
||||
}
|
||||
|
||||
if category is None:
|
||||
|
||||
Reference in New Issue
Block a user