diff --git a/src/games/chat.js b/src/games/chat.js index 078a650..a11f8a9 100644 --- a/src/games/chat.js +++ b/src/games/chat.js @@ -156,7 +156,7 @@ async function onCommand(args, context) { if (['tokens', 'credit'].includes(context.subcommand)) { const tokens = await getTokens(context); - context.sendMessage(`You have used ${config.chat.userTokenLimit - tokens} chat tokens remaining. They will be returned gradually over ${config.chat.userTokenPeriod} hours.`, context.room.id, { label: false }); + context.sendMessage(`You have ${config.chat.userTokenLimit - tokens} chat tokens remaining. They will be returned gradually over ${config.chat.userTokenPeriod} hours.`, context.room.id, { label: false }); return; }