From 54f2884525bb2b4955f5cb8dc2ddcb8a503149ec Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 25 Feb 2020 16:26:56 -0500 Subject: [PATCH] Fix --- commands/util/report.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/util/report.js b/commands/util/report.js index 2f4a1f63..832b5216 100644 --- a/commands/util/report.js +++ b/commands/util/report.js @@ -17,14 +17,14 @@ module.exports = class ReportCommand extends Command { clientPermissions: ['EMBED_LINKS'], args: [ { - name: 'reason', + key: 'reason', prompt: `What is the reason for your report? Either ${list(reasons, 'or')}.`, type: 'string', oneOf: reasons, parse: reason => reasons.indexOf(reason.toLowerCase()) }, { - name: 'message', + key: 'message', prompt: 'What is the message of your report?', type: 'string' }