aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--commands/warn.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/warn.js b/commands/warn.js
index 4bc8f1b..8aacce8 100644
--- a/commands/warn.js
+++ b/commands/warn.js
@@ -9,10 +9,10 @@ exports.run = (bot, msg, args) => {
bot.channels.find('name', 'logs').send(
new RichEmbed()
.setColor(0x00ae86)
- .setTitle('Warning')
+ .setTitle(':warning: Warning')
+ .addField('Warning Reason', warnReason)
.addField('ID', victim.id, true)
.addField('Created Account', victim.user.createdAt, true)
- .addField('Warning Reason', warnReason)
.setTimestamp()
.setFooter('Warned by: ' + msg.author.tag, msg.author.avatarURL)
);