Merge pull request #57 from eatdostacos/patch-1

Update balance command
This commit is contained in:
Thomas Zarebczan 2020-06-30 15:34:44 -04:00 committed by GitHub
commit 38422d2543
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -136,7 +136,7 @@ function doBalance(message, tipper) {
if (err) {
message.reply('Error getting balance.').then(message => message.delete(5000));
} else {
message.reply(`You have *${balance}* LBC`);
message.reply(`You have *${balance}* LBC. This may not reflect recent balance changes. Please wait a couple minutes and try again.`);
}
});
}