File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class Extras(commands.Cog):
14
14
def __init__ (self , bot : "GhosttyBot" ) -> None :
15
15
self .bot = bot
16
16
17
- @commands .command (name = "sync" , description = "Accept a pending tester invite ." )
17
+ @commands .command (name = "sync" , description = "Sync command tree ." )
18
18
@commands .guild_only ()
19
19
async def sync (self , ctx : commands .Context [Any ]) -> None :
20
20
assert not is_dm (ctx .author )
@@ -24,7 +24,9 @@ async def sync(self, ctx: commands.Context[Any]) -> None:
24
24
await self .bot .tree .sync ()
25
25
await try_dm (ctx .author , "Command tree synced." )
26
26
27
- @dc .app_commands .command (name = "status" )
27
+ @dc .app_commands .command (
28
+ name = "status" , description = "Export Ghostty Bot Status Message"
29
+ )
28
30
async def ghostty_bot_status (self , interaction : dc .Interaction ) -> None :
29
31
user = interaction .user
30
32
member = self .bot .ghostty_guild .get_member (user .id )
You can’t perform that action at this time.
0 commit comments