From 4dfa7db2430b8aa60bfcd2b8e51056ab574c55ca Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 25 Jun 2017 00:42:14 +0000 Subject: [PATCH] Add tag to portal --- commands/random/portal-send.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random/portal-send.js b/commands/random/portal-send.js index 7e41d674..7ae761ee 100644 --- a/commands/random/portal-send.js +++ b/commands/random/portal-send.js @@ -31,7 +31,7 @@ module.exports = class PortalSendCommand extends Command { }).random(); if (!channel) return msg.say('Aww... No channel has an open portal...'); try { - await channel.send(`**${msg.author.username} (${msg.guild.name}):** ${message}`); + await channel.send(`**${msg.author.tag} (${msg.guild.name}):** ${message}`); return msg.say('Message sent!'); } catch (err) { return msg.say('Failed to send message...');