From 2334489da5aaf0804f2c0eb37aba94500119eacd Mon Sep 17 00:00:00 2001 From: eatdostacos <64234158+eatdostacos@users.noreply.github.com> Date: Fri, 22 May 2020 22:00:39 -0700 Subject: [PATCH] Update balance command --- bot/modules/tipbot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/modules/tipbot.js b/bot/modules/tipbot.js index 3292fef..5cd51ad 100644 --- a/bot/modules/tipbot.js +++ b/bot/modules/tipbot.js @@ -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.`); } }); } -- 2.45.2