File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import {
27
27
import { isTrustedMember } from '../util/inhibitors' ;
28
28
29
29
const AVAILABLE_MESSAGE = `
30
- ✅ **Send your question here to claim the channel**
30
+ **Send your question here to claim the channel**
31
31
This channel will be dedicated to answering your question only. Others will try to answer and help you solve the issue.
32
32
33
33
**Keep in mind:**
@@ -52,8 +52,14 @@ export class HelpChanModule extends Module {
52
52
CHANNEL_PREFIX = 'help-' ;
53
53
54
54
AVAILABLE_EMBED = new MessageEmbed ( )
55
+ . setTitle ( '✅ Available help channel' )
55
56
. 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
+ ) ;
57
63
58
64
DORMANT_EMBED = new MessageEmbed ( )
59
65
. setColor ( TS_BLUE )
You can’t perform that action at this time.
0 commit comments