Added tipping redir and edited help message to match the latest changes
This commit is contained in:
parent
c31d2e9492
commit
fa214244bb
1 changed files with 2 additions and 2 deletions
4
app.js
4
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:'});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue