1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-30 03:42:56 +08:00

Remove redundant && true

Co-authored-by: Susko3 <Susko3@protonmail.com>
This commit is contained in:
Dean Herbert 2024-12-22 22:57:17 +09:00 committed by GitHub
parent 589e187a80
commit e716919a07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -224,7 +224,7 @@ namespace osu.Game
/// 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.
/// </summary>
public bool LimitedToFeaturedArtists => RuntimeInfo.OS == RuntimeInfo.Platform.iOS && true;
public bool LimitedToFeaturedArtists => RuntimeInfo.OS == RuntimeInfo.Platform.iOS;
public OsuGame(string[] args = null)
{