This commit is contained in:
lilyissillyyy
2025-09-06 17:44:20 -04:00
parent d405acafd3
commit 3745730e16
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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 });
}
};
+1 -1
View File
@@ -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 });
}
};
+1 -1
View File
@@ -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 });
}
};
+1 -1
View File
@@ -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 });
}
};