From 8b0ffa8030c3a3ee4f573213910a4fccaf7c8e42 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 28 Feb 2020 13:48:55 -0500 Subject: [PATCH] Report doesn't need EMBED_LINKS, emoji in report --- commands/util/report.js | 5 ++--- package.json | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/commands/util/report.js b/commands/util/report.js index 6f973709..5603429b 100644 --- a/commands/util/report.js +++ b/commands/util/report.js @@ -3,7 +3,7 @@ const { MessageEmbed } = require('discord.js'); const { list } = require('../../util/Util'); const reasons = ['bug', 'feedback', 'suggestion']; const reasonColors = ['RED', 'GREEN', 'YELLOW']; -const displayReasons = ['Bug Report', 'Feedback', 'Suggestion']; +const displayReasons = ['🐛 Bug Report', '📬 Feedback', '❓ Suggestion']; module.exports = class ReportCommand extends Command { constructor(client) { @@ -14,7 +14,6 @@ module.exports = class ReportCommand extends Command { memberName: 'report', description: 'Reports something to the bot owner(s).', guarded: true, - clientPermissions: ['EMBED_LINKS'], args: [ { key: 'reason', @@ -46,6 +45,6 @@ module.exports = class ReportCommand extends Command { continue; } } - return msg.say(`**${displayReasons[reason]}** sent! Thank you!`); + return msg.say(`${displayReasons[reason]} sent! Thank you!`); } }; diff --git a/package.json b/package.json index e52e3200..77fc9c7f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "110.9.7", + "version": "110.9.8", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {