Skip to content

Commit

Permalink
Add option for v5 menu
Browse files Browse the repository at this point in the history
only 21 minutes after it was released on zint :D
  • Loading branch information
pizzaboxer authored Jul 18, 2023
1 parent 54ff38e commit ed56b58
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions Bloxstrap/FastFlagManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public class FastFlagManager : JsonManager<Dictionary<string, object>>
{ "FFlagDisableNewIGMinDUA", null },
{ "FFlagEnableInGameMenuControls", null },
{ "FFlagEnableV3MenuABTest3", null },
{ "FFlagEnableMenuControlsABTest", null }
{ "FFlagEnableMenuControlsABTest", null },
{ "FFlagEnableInGameMenuModernization": null }
}
},

Expand All @@ -52,7 +53,8 @@ public class FastFlagManager : JsonManager<Dictionary<string, object>>
{ "FFlagDisableNewIGMinDUA", "True" },
{ "FFlagEnableInGameMenuControls", "False" },
{ "FFlagEnableV3MenuABTest3", "False" },
{ "FFlagEnableMenuControlsABTest", "False" }
{ "FFlagEnableMenuControlsABTest", "False" },
{ "FFlagEnableInGameMenuModernization": "False" }
}
},

Expand All @@ -63,7 +65,8 @@ public class FastFlagManager : JsonManager<Dictionary<string, object>>
{ "FFlagDisableNewIGMinDUA", "False" },
{ "FFlagEnableInGameMenuControls", "False" },
{ "FFlagEnableV3MenuABTest3", "False" },
{ "FFlagEnableMenuControlsABTest", "False" }
{ "FFlagEnableMenuControlsABTest", "False" },
{ "FFlagEnableInGameMenuModernization": "False" }
}
},

Expand All @@ -74,7 +77,20 @@ public class FastFlagManager : JsonManager<Dictionary<string, object>>
{ "FFlagDisableNewIGMinDUA", "True" },
{ "FFlagEnableInGameMenuControls", "True" },
{ "FFlagEnableV3MenuABTest3", "True" },
{ "FFlagEnableMenuControlsABTest", "True" }
{ "FFlagEnableMenuControlsABTest", "True" },
{ "FFlagEnableInGameMenuModernization": "False" }
}
},

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

0 comments on commit ed56b58

Please sign in to comment.