Fixed a missing use of FormatUsername()

This commit is contained in:
barelyprofessional
2025-09-08 15:10:25 -05:00
parent 820eec7d0c
commit aec236f92a

View File

@@ -151,7 +151,7 @@ internal class BotCommands
if (newLevel == null) return; if (newLevel == null) return;
var payout = await gambler.UpgradeVipLevel(newLevel, _cancellationToken); var payout = await gambler.UpgradeVipLevel(newLevel, _cancellationToken);
await _bot.SendChatMessageAsync( await _bot.SendChatMessageAsync(
$"🤑🤑 {user.KfUsername} has leveled up to to {newLevel.VipLevel.Icon} {newLevel.VipLevel.Name} Tier {newLevel.Tier} " + $"🤑🤑 {user.FormatUsername()} has leveled up to to {newLevel.VipLevel.Icon} {newLevel.VipLevel.Name} Tier {newLevel.Tier} " +
$"and received a bonus of {await payout.FormatKasinoCurrencyAsync()}", true); $"and received a bonus of {await payout.FormatKasinoCurrencyAsync()}", true);
} }