From bc83b08b04431976f7a06245e36cbd6f0ca141eb Mon Sep 17 00:00:00 2001 From: idkthegithub <59868100+idkthegithub@users.noreply.github.com> Date: Mon, 15 May 2023 12:05:30 +0200 Subject: [PATCH] Update Settings.cs changed the position cuz yeah --- Bloxstrap/Models/Settings.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Bloxstrap/Models/Settings.cs b/Bloxstrap/Models/Settings.cs index 6424183..3a5899d 100644 --- a/Bloxstrap/Models/Settings.cs +++ b/Bloxstrap/Models/Settings.cs @@ -15,6 +15,7 @@ namespace Bloxstrap.Models public bool CheckForUpdates { get; set; } = true; public bool CreateDesktopIcon { get; set; } = true; public bool MultiInstanceLaunching { get; set; } = false; + public bool RemoveRobloxText { get; set; } = false; // channel configuration public string Channel { get; set; } = RobloxDeployment.DefaultChannel; @@ -31,6 +32,6 @@ namespace Bloxstrap.Models public bool UseOldMouseCursor { get; set; } = false; public bool UseDisableAppPatch { get; set; } = false; public bool DisableFullscreenOptimizations { get; set; } = false; - public bool RemoveRobloxText { get; set; } = false; + } }