diff --git a/Bloxstrap/FastFlagManager.cs b/Bloxstrap/FastFlagManager.cs index 1ba5513..f8ea19e 100644 --- a/Bloxstrap/FastFlagManager.cs +++ b/Bloxstrap/FastFlagManager.cs @@ -60,7 +60,8 @@ namespace Bloxstrap { "UI.Menu.Style.ABTest.1", "FFlagEnableMenuControlsABTest" }, { "UI.Menu.Style.ABTest.2", "FFlagEnableV3MenuABTest3" }, - { "UI.Menu.Style.ABTest.3", "FFlagEnableInGameMenuChromeABTest3" } + { "UI.Menu.Style.ABTest.3", "FFlagEnableInGameMenuChromeABTest3" }, + { "UI.Menu.Style.ABTest.4", "FFlagEnableInGameMenuChromeABTest4" } }; public static IReadOnlyDictionary RenderingModes => new Dictionary diff --git a/Bloxstrap/Installer.cs b/Bloxstrap/Installer.cs index 3451460..72ae0ac 100644 --- a/Bloxstrap/Installer.cs +++ b/Bloxstrap/Installer.cs @@ -564,6 +564,9 @@ namespace Bloxstrap App.FastFlags.SetPreset("UI.Menu.Style.V2Rollout", "100"); } + if (App.FastFlags.GetPreset("UI.Menu.Style.ABTest.1") is not null) + App.FastFlags.SetPreset("UI.Menu.Style.ABTest", "False"); + App.FastFlags.SetValue("FFlagDisableNewIGMinDUA", null); }