Address new chrome AB test flag

This commit is contained in:
pizzaboxer 2024-10-06 18:04:44 +01:00
parent 2a19b4ab62
commit 65a7bb1c04
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8
2 changed files with 5 additions and 1 deletions

View File

@ -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<RenderingMode, string> RenderingModes => new Dictionary<RenderingMode, string>

View File

@ -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);
}