From c749ee4777e9da03e6d2aa2a79741ba5857d76dd Mon Sep 17 00:00:00 2001 From: Niko Date: Wed, 28 Feb 2018 23:15:53 +0100 Subject: [PATCH] add missing # in channel messages --- bot/modules/tipbot.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bot/modules/tipbot.js b/bot/modules/tipbot.js index 53357fb..e00c1ac 100644 --- a/bot/modules/tipbot.js +++ b/bot/modules/tipbot.js @@ -34,7 +34,7 @@ exports.tip = { author: { name: '!tip' } } }, - channelwarning = 'Please use <' + spamchannel + '> or DMs to talk to bots.'; + channelwarning = 'Please use <#' + spamchannel + '> or DMs to talk to bots.'; switch (subcommand) { case 'help': privateOrSandboxOnly(msg, channelwarning, doHelp, [helpmsg]); @@ -78,7 +78,7 @@ exports.multitip = { author: { name: '!multitip' } } }, - channelwarning = 'Please use <' + spamchannel + '> or DMs to talk to bots.'; + channelwarning = 'Please use <#' + spamchannel + '> or DMs to talk to bots.'; switch (subcommand) { case 'help': privateOrSandboxOnly(msg, channelwarning, doHelp, [helpmsg]); @@ -114,7 +114,7 @@ exports.roletip = { author: { name: '!roletip' } } }, - channelwarning = `Please use <${spamchannel}> or DMs to talk to bots.`; + channelwarning = `Please use <#${spamchannel}> or DMs to talk to bots.`; switch (subcommand) { case 'help': privateOrSandboxOnly(msg, channelwarning, doHelp, [helpmsg]);