1
0
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:
Dean Herbert 2024-12-22 23:58:35 +09:00
parent e716919a07
commit 0aed625bb8
No known key found for this signature in database
2 changed files with 3 additions and 4 deletions

View File

@ -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)
{

View File

@ -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;