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:
neoarz
2025-09-17 08:09:19 -04:00
parent 4d7b23dae2
commit a9edf7a423
4 changed files with 75 additions and 4 deletions

View File

@@ -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: