From 0715cc0b038f1322e780d9a42fd1201918ad78c9 Mon Sep 17 00:00:00 2001 From: axell Date: Sat, 6 Jul 2024 14:44:02 +0200 Subject: [PATCH] add space between username and displayname to make it more visually pleasing --- Bloxstrap/Integrations/DiscordRichPresence.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Bloxstrap/Integrations/DiscordRichPresence.cs b/Bloxstrap/Integrations/DiscordRichPresence.cs index 3eb3121..6459be0 100644 --- a/Bloxstrap/Integrations/DiscordRichPresence.cs +++ b/Bloxstrap/Integrations/DiscordRichPresence.cs @@ -254,12 +254,9 @@ namespace Bloxstrap.Integrations { App.Logger.WriteLine(LOG_IDENT, "Could not get user info!"); } else { - App.Logger.WriteLine(LOG_IDENT, "testpoint1"); - smallimagetext = userInfoResponse.DisplayName + $"(@{userInfoResponse.Username})"; //example: john doe (@johndoe) + smallimagetext = userInfoResponse.DisplayName + $" (@{userInfoResponse.Username})"; //example: john doe (@johndoe) App.Logger.WriteLine(LOG_IDENT, $"Got user info as {smallimagetext}"); } - App.Logger.WriteLine(LOG_IDENT, "testpoint2"); - }