mirror of
https://github.com/LBRYFoundation/lbry-tipbot.git
synced 2025-08-23 16:57:24 +00:00
missed 2 coins -> credits
This commit is contained in:
parent
6cfd4f578e
commit
8a29b053a0
1 changed files with 2 additions and 2 deletions
|
@ -241,7 +241,7 @@ function doMultiTip(message, tipper, words, helpmsg) {
|
||||||
}
|
}
|
||||||
let [userIDs, amount] = findUserIDsAndAmount(message, words, prv);
|
let [userIDs, amount] = findUserIDsAndAmount(message, words, prv);
|
||||||
if (amount == null) {
|
if (amount == null) {
|
||||||
message.reply("I don't know how to tip that many coins...").then(message => message.delete(5000));
|
message.reply("I don't know how to tip that many credits...").then(message => message.delete(5000));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!userIDs) {
|
if (!userIDs) {
|
||||||
|
@ -266,7 +266,7 @@ function doRoleTip(message, tipper, words, helpmsg) {
|
||||||
}
|
}
|
||||||
let amount = getValidatedAmount(words[amountOffset]);
|
let amount = getValidatedAmount(words[amountOffset]);
|
||||||
if (amount == null) {
|
if (amount == null) {
|
||||||
message.reply("I don't know how to tip that many coins...").then(message => message.delete(5000));
|
message.reply("I don't know how to tip that many credits...").then(message => message.delete(5000));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (message.mentions.roles.first().id) {
|
if (message.mentions.roles.first().id) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue