mirror of
https://github.com/ppy/osu.git
synced 2025-01-18 11:52:54 +08:00
Rename variable and adjust commentary
This commit is contained in:
parent
e716919a07
commit
0aed625bb8
@ -221,10 +221,9 @@ namespace osu.Game
|
||||
private readonly List<OverlayContainer> visibleBlockingOverlays = new List<OverlayContainer>();
|
||||
|
||||
/// <summary>
|
||||
/// Whether the game should be limited from providing access to download non-featured-artist beatmaps.
|
||||
/// This only affects the "featured artists" filter in the beatmap listing overlay.
|
||||
/// Whether the game should be limited to only display licensed content.
|
||||
/// </summary>
|
||||
public bool LimitedToFeaturedArtists => RuntimeInfo.OS == RuntimeInfo.Platform.iOS;
|
||||
public bool HideUnlicensedContent => RuntimeInfo.OS == RuntimeInfo.Platform.iOS;
|
||||
|
||||
public OsuGame(string[] args = null)
|
||||
{
|
||||
|
@ -148,7 +148,7 @@ namespace osu.Game.Overlays.BeatmapListing
|
||||
if (!Active.Value)
|
||||
disclaimerShown.Value = true;
|
||||
|
||||
if (game.LimitedToFeaturedArtists)
|
||||
if (game.HideUnlicensedContent)
|
||||
{
|
||||
Enabled.Value = false;
|
||||
Active.Disabled = true;
|
||||
|
Loading…
Reference in New Issue
Block a user