Skip to content

Commit

Permalink
Consolidate menu selection flags
Browse files Browse the repository at this point in the history
turns out v5 was just merged into v4 lol
  • Loading branch information
pizzaboxer committed Jul 23, 2023
1 parent c64f827 commit 44c9d49
Showing 1 changed file with 4 additions and 28 deletions.
32 changes: 4 additions & 28 deletions Bloxstrap/FastFlagManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,7 @@ public class FastFlagManager : JsonManager<Dictionary<string, string>>
new Dictionary<string, string?>
{
{ "FFlagDisableNewIGMinDUA", null },
{ "FFlagEnableInGameMenuControls", null },
{ "FFlagEnableV3MenuABTest3", null },
{ "FFlagEnableMenuControlsABTest", null },
{ "FFlagEnableInGameMenuModernization", null }
{ "FFlagEnableInGameMenuControls", null }
}
},

Expand All @@ -46,10 +43,7 @@ public class FastFlagManager : JsonManager<Dictionary<string, string>>
new Dictionary<string, string?>
{
{ "FFlagDisableNewIGMinDUA", "True" },
{ "FFlagEnableInGameMenuControls", "False" },
{ "FFlagEnableV3MenuABTest3", "False" },
{ "FFlagEnableMenuControlsABTest", "False" },
{ "FFlagEnableInGameMenuModernization", "False" }
{ "FFlagEnableInGameMenuControls", "False" }
}
},

Expand All @@ -58,10 +52,7 @@ public class FastFlagManager : JsonManager<Dictionary<string, string>>
new Dictionary<string, string?>
{
{ "FFlagDisableNewIGMinDUA", "False" },
{ "FFlagEnableInGameMenuControls", "False" },
{ "FFlagEnableV3MenuABTest3", "False" },
{ "FFlagEnableMenuControlsABTest", "False" },
{ "FFlagEnableInGameMenuModernization", "False" }
{ "FFlagEnableInGameMenuControls", "False" }
}
},

Expand All @@ -70,22 +61,7 @@ public class FastFlagManager : JsonManager<Dictionary<string, string>>
new Dictionary<string, string?>
{
{ "FFlagDisableNewIGMinDUA", "True" },
{ "FFlagEnableInGameMenuControls", "True" },
{ "FFlagEnableV3MenuABTest3", "True" },
{ "FFlagEnableMenuControlsABTest", "True" },
{ "FFlagEnableInGameMenuModernization", "False" }
}
},

{
"Version 5 (2023)",
new Dictionary<string, string?>
{
{ "FFlagDisableNewIGMinDUA", "True" },
{ "FFlagEnableInGameMenuControls", "False" },
{ "FFlagEnableV3MenuABTest3", "False" },
{ "FFlagEnableMenuControlsABTest", "False" },
{ "FFlagEnableInGameMenuModernization", "True" }
{ "FFlagEnableInGameMenuControls", "True" }
}
}
};
Expand Down

0 comments on commit 44c9d49

Please sign in to comment.