Added the abandon Kasino feature. Migrated to an extension method for formatting usernames

This commit is contained in:
barelyprofessional
2025-09-03 03:20:34 -05:00
parent 848214e90f
commit a7739278c7
2 changed files with 55 additions and 13 deletions

View File

@@ -1,5 +1,6 @@
using System.Text;
using System.Text.RegularExpressions;
using KfChatDotNetBot.Models.DbModels;
namespace KfChatDotNetBot.Extensions;
@@ -130,4 +131,10 @@ public static class Extensions
var charCount = Encoding.UTF8.GetCharCount(bytes, 0, limitBytes);
return s.Substring(0, charCount);
}
// Placeholder for future expansion involving custom titles
public static string FormatUsername(this UserDbModel user)
{
return $"@{user.KfUsername}";
}
}