Skip to content

Commit 15bbbf0

Browse files
committed
Clean up occupied embed
- "To @person" looks awkward; dropped the "To " - Mentions don't work in the footer, just use the username instead
1 parent de5123c commit 15bbbf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/modules/helpchan.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const occupiedMessage = (asker: User) => `
4646
4747
This channel is dedicated to answering their question only (and any of their follow-up questions). Others will try to answer and help solve the issue.
4848
49-
**To ${asker.toString()}, keep in mind:**
49+
**${asker.toString()}, keep in mind:**
5050
• It's always ok to just ask your question. You don't need permission.
5151
• Explain what you expect to happen and what actually happens.
5252
• Include a code sample and error message, if you got any.
@@ -87,7 +87,7 @@ export class HelpChanModule extends Module {
8787
.setFooter(
8888
`Closes after ${
8989
dormantChannelTimeout / 60 / 60 / 1000
90-
} hours of inactivity or when ${asker.toString()} sends !close.`,
90+
} hours of inactivity or when ${asker.username} sends !close.`,
9191
);
9292
}
9393

0 commit comments

Comments
 (0)