diff --git a/Bloxstrap/FastFlagManager.cs b/Bloxstrap/FastFlagManager.cs index a444b80..1ba5513 100644 --- a/Bloxstrap/FastFlagManager.cs +++ b/Bloxstrap/FastFlagManager.cs @@ -55,6 +55,8 @@ namespace Bloxstrap { "UI.Menu.Style.EnableV4.1", "FFlagEnableInGameMenuControls" }, { "UI.Menu.Style.EnableV4.2", "FFlagEnableInGameMenuModernization" }, { "UI.Menu.Style.EnableV4Chrome", "FFlagEnableInGameMenuChrome" }, + { "UI.Menu.Style.ReportButtonCutOff", "FFlagFixReportButtonCutOff" }, + { "UI.Menu.Style.ABTest.1", "FFlagEnableMenuControlsABTest" }, { "UI.Menu.Style.ABTest.2", "FFlagEnableV3MenuABTest3" }, @@ -104,7 +106,8 @@ namespace Bloxstrap { "V2Rollout", null }, { "EnableV4", null }, { "EnableV4Chrome", null }, - { "ABTest", null } + { "ABTest", null }, + { "ReportButtonCutOff", null } } }, @@ -115,7 +118,8 @@ namespace Bloxstrap { "V2Rollout", "0" }, { "EnableV4", "False" }, { "EnableV4Chrome", "False" }, - { "ABTest", "False" } + { "ABTest", "False" }, + { "ReportButtonCutOff", "False" } } }, @@ -126,7 +130,8 @@ namespace Bloxstrap { "V2Rollout", "100" }, { "EnableV4", "False" }, { "EnableV4Chrome", "False" }, - { "ABTest", "False" } + { "ABTest", "False" }, + { "ReportButtonCutOff", null } } }, @@ -137,7 +142,8 @@ namespace Bloxstrap { "V2Rollout", "0" }, { "EnableV4", "True" }, { "EnableV4Chrome", "False" }, - { "ABTest", "False" } + { "ABTest", "False" }, + { "ReportButtonCutOff", null } } }, @@ -148,7 +154,8 @@ namespace Bloxstrap { "V2Rollout", "0" }, { "EnableV4", "True" }, { "EnableV4Chrome", "True" }, - { "ABTest", "False" } + { "ABTest", "False" }, + { "ReportButtonCutOff", null } } } }; diff --git a/Bloxstrap/Installer.cs b/Bloxstrap/Installer.cs index 96784a7..0d23dd3 100644 --- a/Bloxstrap/Installer.cs +++ b/Bloxstrap/Installer.cs @@ -547,9 +547,16 @@ namespace Bloxstrap if (oldV2Val is not null) { if (oldV2Val == "True") + { App.FastFlags.SetPreset("UI.Menu.Style.V2Rollout", "0"); + + if (App.FastFlags.GetValue("UI.Menu.Style.EnableV4.1") == "False") + App.FastFlags.SetPreset("UI.Menu.Style.ReportButtonCutOff", "False"); + } else + { App.FastFlags.SetPreset("UI.Menu.Style.V2Rollout", "100"); + } App.FastFlags.SetValue("FFlagDisableNewIGMinDUA", null); }