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);
|
||||
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;
|
||||
}
|
||||
if (!userIDs) {
|
||||
|
@ -266,7 +266,7 @@ function doRoleTip(message, tipper, words, helpmsg) {
|
|||
}
|
||||
let amount = getValidatedAmount(words[amountOffset]);
|
||||
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;
|
||||
}
|
||||
if (message.mentions.roles.first().id) {
|
||||
|
|
Loading…
Reference in a new issue