Update tipbot.js

This commit is contained in:
filipnyquist 2017-10-25 21:44:38 +02:00 committed by GitHub
parent dfb1ec5b15
commit 7e0e3e8400

View file

@ -137,7 +137,7 @@ function sendLbc(message, tipper, id, amount) {
else {
var imessage =
'Wubba lubba dub dub! <@' + tipper + '> tipped <@' + id + '> ' + amount + ' LBC (' + txLink(txId) + '). ' +
'DM me `!help` for tipbot instructions.'
'DM me `!tip` for tipbot instructions.'
message.reply(imessage);
}
});
@ -186,4 +186,4 @@ function getValidatedAmount(amount) {
function txLink(txId) {
return "<https://explorer.lbry.io/tx/" + txId + ">";
}
}