From b770f8bda5705e6dd7cbaed2a40f880bf9a596d6 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 25 Jun 2017 14:50:09 +0000 Subject: [PATCH] Show where the message goes --- 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 85819e51..3852bc66 100644 --- a/commands/random/portal-send.js +++ b/commands/random/portal-send.js @@ -35,7 +35,7 @@ module.exports = class PortalSendCommand extends Command { if (!channel) return msg.say('Aww... No channel has an open portal...'); try { await channel.send(`**${msg.author.tag} (${msg.guild.name}):** ${message}`); - return msg.say('Message sent!'); + return msg.say(`Message sent to **${channel.name}**!`); } catch (err) { return msg.say('Failed to send message...'); }