diff --git a/commands/util-public/feedback.js b/commands/util-public/feedback.js index d2568875..e72bffe9 100644 --- a/commands/util-public/feedback.js +++ b/commands/util-public/feedback.js @@ -17,6 +17,6 @@ module.exports = class FeedbackCommand extends Command { } run(msg, { message }) { - return this.client.registry.commands.get('report').run(msg, { reason: 'feedback', message }); + return this.client.registry.commands.get('report').run(msg, { reason: 1, message }); } }; diff --git a/commands/util-public/report-abuse.js b/commands/util-public/report-abuse.js index a8b9180f..0d9e71c9 100644 --- a/commands/util-public/report-abuse.js +++ b/commands/util-public/report-abuse.js @@ -18,6 +18,6 @@ module.exports = class ReportAbuseCommand extends Command { } run(msg, { message }) { - return this.client.registry.commands.get('report').run(msg, { reason: 'abuse', message }); + return this.client.registry.commands.get('report').run(msg, { reason: 3, message }); } }; diff --git a/commands/util-public/report-bug.js b/commands/util-public/report-bug.js index 3a101b6a..85027619 100644 --- a/commands/util-public/report-bug.js +++ b/commands/util-public/report-bug.js @@ -18,6 +18,6 @@ module.exports = class ReportBugCommand extends Command { } run(msg, { message }) { - return this.client.registry.commands.get('report').run(msg, { reason: 'bug', message }); + return this.client.registry.commands.get('report').run(msg, { reason: 0, message }); } }; diff --git a/commands/util-public/suggest.js b/commands/util-public/suggest.js index 9d462949..c0a4ee61 100644 --- a/commands/util-public/suggest.js +++ b/commands/util-public/suggest.js @@ -18,6 +18,6 @@ module.exports = class SuggestCommand extends Command { } run(msg, { message }) { - return this.client.registry.commands.get('report').run(msg, { reason: 'suggestion', message }); + return this.client.registry.commands.get('report').run(msg, { reason: 2, message }); } };