fix bug report command
This commit is contained in:
parent
190d690d03
commit
0f1e61af99
2 changed files with 2 additions and 2 deletions
|
@ -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.`
|
||||
);
|
||||
if (ctx.args.length < 1) {
|
||||
return m.channel.send(abuse);
|
||||
return ctx.send(abuse);
|
||||
}
|
||||
|
||||
ctx.trello
|
||||
|
|
|
@ -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.`
|
||||
);
|
||||
if (ctx.args.length < 1) {
|
||||
return m.channel.send(abuse);
|
||||
return ctx.send(abuse);
|
||||
}
|
||||
|
||||
ctx.trello
|
||||
|
|
Loading…
Reference in a new issue