From 4630b3c9bd7dba08554fede35877a5ea7966d470 Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Sat, 22 Apr 2023 21:32:26 +0100 Subject: [PATCH] Fix formatting I LOVE VISUAL STUDIO --- Bloxstrap/Integrations/ReShade.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Bloxstrap/Integrations/ReShade.cs b/Bloxstrap/Integrations/ReShade.cs index 1a541aa..0b71900 100644 --- a/Bloxstrap/Integrations/ReShade.cs +++ b/Bloxstrap/Integrations/ReShade.cs @@ -507,11 +507,11 @@ namespace Bloxstrap.Integrations if (App.Settings.Prop.Channel.ToLower() == DeployManager.DefaultChannel.ToLower()) { - App.Logger.WriteLine($"[App::OnStartup] Channel is already {DeployManager.DefaultChannel}"); + App.Logger.WriteLine($"[App::OnStartup] Channel is already {DeployManager.DefaultChannel}"); return; - } + } - ClientVersion versionInfo = await App.DeployManager.GetLastDeploy().ConfigureAwait(false); + ClientVersion versionInfo = await App.DeployManager.GetLastDeploy().ConfigureAwait(false); string manifest = await App.HttpClient.GetStringAsync($"{App.DeployManager.BaseUrl}/{versionInfo.VersionGuid}-rbxManifest.txt"); if (!manifest.Contains("RobloxPlayerBeta.dll")) @@ -530,5 +530,5 @@ namespace Bloxstrap.Integrations App.DeployManager.Channel = App.Settings.Prop.Channel = DeployManager.DefaultChannel; } - } + } }