Update ModsViewModel.cs

Same as the other one.
This commit is contained in:
EasternBloxxer 2023-04-24 02:40:00 +03:00 committed by GitHub
parent 7d84806e68
commit 1e8b43631b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,5 +125,11 @@ namespace Bloxstrap.ViewModels
get => App.Settings.Prop.DisableFullscreenOptimizations;
set => App.Settings.Prop.DisableFullscreenOptimizations = value;
}
public bool ForceFutureEnabled
{
get => App.FastFlags.GetValue("FFlagDebugForceFutureIsBrightPhase3") == "True";
set => App.FastFlags.SetValue("FFlagDebugForceFutureIsBrightPhase3", value ? "True" : null);
}
}
}