File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -237,8 +237,9 @@ export class HelpThreadModule extends Module {
237
237
@command ( {
238
238
description : 'Help System: Ping the @Helper role from a help thread' ,
239
239
aliases : [ 'helpers' ] ,
240
+ single : true ,
240
241
} )
241
- async helper ( msg : Message ) {
242
+ async helper ( msg : Message , comment : string ) {
242
243
if ( ! isHelpThread ( msg . channel ) ) {
243
244
return sendWithMessageOwnership (
244
245
msg ,
@@ -278,7 +279,11 @@ export class HelpThreadModule extends Module {
278
279
279
280
// The beacons are lit, Gondor calls for aid
280
281
await Promise . all ( [
281
- thread . parent . send ( `<@&${ trustedRoleId } > ${ msg . channel } ` ) ,
282
+ thread . parent . send (
283
+ `<@&${ trustedRoleId } > ${ msg . channel } ${
284
+ isTrusted ? comment : ''
285
+ } `,
286
+ ) ,
282
287
this . updateHelpInfo ( thread . parent ) ,
283
288
msg . react ( '✅' ) ,
284
289
HelpThread . update ( thread . id , {
You can’t perform that action at this time.
0 commit comments