fix bug report command

This commit is contained in:
monty 2019-11-21 13:40:39 +01:00
parent 190d690d03
commit 0f1e61af99
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ module.exports = class Bug extends Command {
`Please make sure to make your Suggestion as Detailed as possible.\n\nAbuse of this command will lead to complete denial of command usage.` `Please make sure to make your Suggestion as Detailed as possible.\n\nAbuse of this command will lead to complete denial of command usage.`
); );
if (ctx.args.length < 1) { if (ctx.args.length < 1) {
return m.channel.send(abuse); return ctx.send(abuse);
} }
ctx.trello ctx.trello

View File

@ -22,7 +22,7 @@ module.exports = class Suggest extends Command {
`Please make sure to make your Suggestion as Detailed as possible.\n\nAbuse of this command will lead to complete denial of command usage.` `Please make sure to make your Suggestion as Detailed as possible.\n\nAbuse of this command will lead to complete denial of command usage.`
); );
if (ctx.args.length < 1) { if (ctx.args.length < 1) {
return m.channel.send(abuse); return ctx.send(abuse);
} }
ctx.trello ctx.trello