diff --git a/index.js b/index.js index dd64de5..a534791 100644 --- a/index.js +++ b/index.js @@ -55,13 +55,13 @@ client.addListener('pm', function (from, message) { redisClient.on("pmessage", function (pattern, channel, message) { if (channel.match(/^kimochi/)) { var gateway = channel.match(/gw:(.*)\.text/)[1]; - client.say(config.globals.aaa_pull_channel, message + irc.colors.wrap(irc.colors.code.purple, ' (' + gateway + ')')); + client.say(config.globals.aaa_pull_channel, message + irc.colors.wrap(irc.colors.code.dark_red, ' (' + gateway + ')')); } else if (channel.match(/^echi/)) { var gateway = channel.match(/gw:(.*)\.message$/)[1]; if (gateway == config.globals.echi_gw_blacklist) { return; } - client.say(config.globals.topup_message_channel, message + irc.colors.wrap('purple', ' (' + gateway + ')')); + client.say(config.globals.topup_message_channel, message + irc.colors.wrap(irc.colors.code.dark_red, ' (' + gateway + ')')); } });