File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,10 @@ async def forum_post_created(self, thread: discord.Thread) -> None:
110
110
if not channel :
111
111
return
112
112
113
- await channel .send (f"{ thread .owner } ({ thread .owner_id } ) created thread '{ thread .name } ' ({ thread .id } )." )
113
+ msg : str = (
114
+ f"{ thread .owner } (ID: { thread .owner_id } ) created thread: `{ thread .name } (ID: { thread .id } )` { thread .mention } "
115
+ )
116
+ await channel .send (msg )
114
117
115
118
tags = {s .id for s in thread .applied_tags }
116
119
# we'll check for individual libs before the generic python tag
@@ -173,7 +176,10 @@ async def solved(self, ctx: core.GuildContext) -> None:
173
176
if not channel :
174
177
return
175
178
176
- msg : str = f"{ ctx .author } ({ ctx .author .id } ) marked thread '{ ctx .channel .name } ' ({ ctx .channel .id } ) as solved."
179
+ msg : str = (
180
+ f"{ ctx .author } (ID: { ctx .author .id } ) marked thread: `{ ctx .channel .name } (ID: { ctx .channel .id } )` "
181
+ f"{ ctx .channel .mention } as solved."
182
+ )
177
183
await channel .send (msg )
178
184
179
185
@solved .error
You can’t perform that action at this time.
0 commit comments