diff --git a/app.js b/app.js index ee75320..27ce500 100644 --- a/app.js +++ b/app.js @@ -49,7 +49,7 @@ slackbot.on('start', function() { if (command === '!help') { var helpMsg = "I'm Wunderbot, LBRY's slackbot. Here's what I can do:\n" + '`!help` shows this message\n' + - '`!tip` sends LBC tips to others, and withdraws and deposits credits into the your tipping wallet\n' + + '`!tip` sends LBC tips to others, and withdraws and deposits credits into the your tipping wallet*(now handled by <@tipbot>)*\n' + '`!hash` reports on the LBRY blockchain\n' + '_type any of the above commands for more info_\n' + '\n' + @@ -65,7 +65,7 @@ slackbot.on('start', function() { } if (command === '!tip' && data.channel.startsWith("D")) { - var tipMsg = 'Sorry, tipping is now handled by <@B5VESJN2D>\n'; + var tipMsg = 'Sorry, tipping is now handled by <@tipbot>\n'; slackbot.postMessage(data.channel, tipMsg, {icon_emoji: ':bulb:'}); }