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 @@ -27,7 +27,7 @@ import {
2727import { isTrustedMember } from '../util/inhibitors' ;
2828
2929const AVAILABLE_MESSAGE = `
30- ✅ **Send your question here to claim the channel**
30+ **Send your question here to claim the channel**
3131This 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 )
You can’t perform that action at this time.
0 commit comments