From df2f31f4cae7f6af2f1826112a429f84d8adb72c Mon Sep 17 00:00:00 2001 From: rhearmas <34490428+qu-ota@users.noreply.github.com> Date: Mon, 23 Dec 2019 23:21:52 -0500 Subject: [PATCH] on a roll, right --- commands/Fun/roll.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/commands/Fun/roll.js b/commands/Fun/roll.js index a317df6..9165d80 100644 --- a/commands/Fun/roll.js +++ b/commands/Fun/roll.js @@ -13,7 +13,7 @@ exports.run = async (client, message, args, level) => { footer += `:game_die: **${args[0]}**`; if (args.length > 1) { reason = args.splice(1).join(' '); - footer += ` | ${reason}`; + footer += ` | Reason: ${reason}`; } let results = roller.roll(args[0]); @@ -28,7 +28,10 @@ exports.run = async (client, message, args, level) => { name: '\u200b', value: footer } - ] + ], + { + footer: `Rolled by ${message.author.tag}` + } ); message.channel.send({ embed });