Fixing Roletip sendLBC call
Apparently despite being a supposedly smart language, JS still insists on making me convert a string of numbers from a number back to a string before _and_ inside a function call, yay aggressively dynamically typed languages. This _should_ fix the matter now
This commit is contained in:
parent
44f4b4407f
commit
db8d90b9a7
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ function doRoleTip(message, tipper, words, helpmsg) {
|
|||
if (message.mentions.roles.first().members.first().id) {
|
||||
let userIDs = message.mentions.roles.first().members.map(member => member.user.id.replace('!', ''));
|
||||
for (let i = 0; i < userIDs; i++) {
|
||||
sendLBC(message, tipper, userIDs[i], amount, prv);
|
||||
sendLBC(message, tipper, userIDs[i].toString(), amount, prv);
|
||||
}
|
||||
} else {
|
||||
message.reply('Sorry, I could not find any users to tip in that role...').then(message => message.delete(5000));
|
||||
|
|
Loading…
Reference in a new issue