diff options
| -rw-r--r-- | commands/suggestfeature.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/suggestfeature.js b/commands/suggestfeature.js index 52b077e..ba786cc 100644 --- a/commands/suggestfeature.js +++ b/commands/suggestfeature.js @@ -23,7 +23,7 @@ module.exports.run = async (client, message, args) => { new RichEmbed() .setColor ('#1fd619') .setTitle('Suggestion') - .setDescription(`This is a suggestion from `+ message.author.username +` and the guild ${message.guild.name}.`) + .setDescription(`This is a suggestion from `+ message.author.username +` and from the guild ${message.guild.name}.`) .addField('Suggestion Contents', args.join(' ')) ) message.reply("Alright, your suggestion has been shown to the ACN guild.") @@ -40,4 +40,4 @@ module.exports.run = async (client, message, args) => { usage: 'suggestfeature [suggestion]', category: '- General Commands', }; -
\ No newline at end of file + |
