From 65a7bb1c04d71028a87a0386d0ee0e950b6bd81b Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Sun, 6 Oct 2024 18:04:44 +0100 Subject: [PATCH] Address new chrome AB test flag --- Bloxstrap/FastFlagManager.cs | 3 ++- Bloxstrap/Installer.cs | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) 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); }