Skip to content

Commit 5180d7a

Browse files
committed
minor semantic changes to available embed
1 parent 6b97abf commit 5180d7a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/modules/helpchan.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {
2727
import { isTrustedMember } from '../util/inhibitors';
2828

2929
const AVAILABLE_MESSAGE = `
30-
**Send your question here to claim the channel**
30+
**Send your question here to claim the channel**
3131
This channel will be dedicated to answering your question only. Others will try to answer and help you solve the issue.
3232
3333
**Keep in mind:**
@@ -52,8 +52,14 @@ export class HelpChanModule extends Module {
5252
CHANNEL_PREFIX = 'help-';
5353

5454
AVAILABLE_EMBED = new MessageEmbed()
55+
.setTitle('✅ Available help channel')
5556
.setColor(GREEN)
56-
.setDescription(AVAILABLE_MESSAGE);
57+
.setDescription(AVAILABLE_MESSAGE)
58+
.setFooter(
59+
`Closes after ${
60+
dormantChannelTimeout / 60 / 60
61+
} hours of inactivity or when you send !close.`,
62+
);
5763

5864
DORMANT_EMBED = new MessageEmbed()
5965
.setColor(TS_BLUE)

0 commit comments

Comments
 (0)