From d6bc33d2da10271fd0d5725f25f3748e81a2a0e9 Mon Sep 17 00:00:00 2001 From: axell Date: Sat, 6 Jul 2024 18:36:04 +0200 Subject: [PATCH] make that its own option --- Bloxstrap/Integrations/DiscordRichPresence.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Bloxstrap/Integrations/DiscordRichPresence.cs b/Bloxstrap/Integrations/DiscordRichPresence.cs index 4422b3d..4aca2af 100644 --- a/Bloxstrap/Integrations/DiscordRichPresence.cs +++ b/Bloxstrap/Integrations/DiscordRichPresence.cs @@ -235,8 +235,7 @@ namespace Bloxstrap.Integrations App.Logger.WriteLine(LOG_IDENT, $"Got Universe thumbnail as {icon}"); } - //right now this is configured in a way so that it will only show your avatar and username if you have chosen to allow people to join you from their profile. - if (!App.Settings.Prop.HideRPCButtons) + if (App.Settings.Prop.AccountShownOnProfile) { var userPfpResponse = await Http.GetJson>($"https://thumbnails.roblox.com/v1/users/avatar-headshot?userIds={userId}&size=180x180&format=Png&isCircular=false"); //we can remove '-headshot' from the url if we want a full avatar picture if (userPfpResponse is null || !userPfpResponse.Data.Any())