Update balance command

This commit is contained in:
eatdostacos 2020-05-22 22:00:39 -07:00 committed by GitHub
parent 485afee3fb
commit 2334489da5
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.`);
}
});
}