From 3871f7a2ebaba91ce098872c5a52d2a1afc7ee49 Mon Sep 17 00:00:00 2001 From: axell Date: Sat, 6 Jul 2024 18:20:55 +0200 Subject: [PATCH] refrence correct variables (again) --- Bloxstrap/Integrations/DiscordRichPresence.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Bloxstrap/Integrations/DiscordRichPresence.cs b/Bloxstrap/Integrations/DiscordRichPresence.cs index edb939e..4422b3d 100644 --- a/Bloxstrap/Integrations/DiscordRichPresence.cs +++ b/Bloxstrap/Integrations/DiscordRichPresence.cs @@ -255,8 +255,8 @@ namespace Bloxstrap.Integrations App.Logger.WriteLine(LOG_IDENT, "Could not get user info!"); } else { - smallImagetext = userInfoResponse.DisplayName + $" (@{userInfoResponse.Username})"; //example: john doe (@johndoe) - App.Logger.WriteLine(LOG_IDENT, $"Got user info as {smallImagetext}"); + smallImageText = userInfoResponse.DisplayName + $" (@{userInfoResponse.Username})"; //example: john doe (@johndoe) + App.Logger.WriteLine(LOG_IDENT, $"Got user info as {smallImageText}"); } } @@ -304,8 +304,8 @@ namespace Bloxstrap.Integrations { LargeImageKey = icon, LargeImageText = universeDetails.Name, - SmallImageKey = smallimage, - SmallImageText = smallimagetext + SmallImageKey = smallImage, + SmallImageText = smallImageText } };