Skip to content

Commit

Permalink
Fix selected escape menu version not applying
Browse files Browse the repository at this point in the history
  • Loading branch information
pizzaboxer committed Oct 11, 2023
1 parent 3439223 commit a099d16
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Bloxstrap/FastFlagManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ public class FastFlagManager : JsonManager<Dictionary<string, object>>
{ "UI.Menu.GraphicsSlider", "FFlagFixGraphicsQuality" },

{ "UI.Menu.Style.DisableV2", "FFlagDisableNewIGMinDUA" },
{ "UI.Menu.Style.EnableV4", "FFlagEnableInGameMenuControls" },
{ "UI.Menu.Style.EnableV4.1", "FFlagEnableInGameMenuControls" },
{ "UI.Menu.Style.EnableV4.2", "FFlagEnableInGameMenuModernization" },

{ "UI.Menu.Style.ABTest.1", "FFlagEnableMenuControlsABTest" },
{ "UI.Menu.Style.ABTest.2", "FFlagEnableMenuModernizationABTest" },
Expand Down Expand Up @@ -226,6 +227,9 @@ public override void Load()
if (GetPreset("Network.Log") != "7")
SetPreset("Network.Log", "7");

string? val = GetPreset("UI.Menu.Style.EnableV4.1");
if (GetPreset("UI.Menu.Style.EnableV4.2") != val)
SetPreset("UI.Menu.Style.EnableV4.2", val);

if (GetPreset("Rendering.Framerate") is not null)
return;
Expand Down

0 comments on commit a099d16

Please sign in to comment.