Fix single-letter game names Again

This commit is contained in:
pizzaboxer 2023-08-23 10:43:07 +01:00
parent ee8f583bae
commit 85c19a5e0d
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8

View File

@ -261,6 +261,9 @@ namespace Bloxstrap.Integrations
_ => $"by {universeDetails.Creator.Name}" + (universeDetails.Creator.HasVerifiedBadge ? " ☑️" : ""),
};
if (universeDetails.Name.Length < 2)
universeDetails.Name = $"{universeDetails.Name}\x2800\x2800\x2800";
_currentPresence = new DiscordRPC.RichPresence
{
Details = $"Playing {universeDetails.Name}",