mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
Merge pull request #19023 from peppy/fix-convert-custom-rulesets
Fix song select placeholder not showing convert hint for custom rulesets
This commit is contained in:
commit
65829d8feb
@ -135,7 +135,7 @@ namespace osu.Game.Screens.Select
|
||||
|
||||
// TODO: Add realm queries to hint at which ruleset results are available in (and allow clicking to switch).
|
||||
// TODO: Make this message more certain by ensuring the osu! beatmaps exist before suggesting.
|
||||
if (filter?.Ruleset?.OnlineID > 0 && !filter.AllowConvertedBeatmaps)
|
||||
if (filter?.Ruleset?.OnlineID != 0 && filter?.AllowConvertedBeatmaps == false)
|
||||
{
|
||||
textFlow.AddParagraph("- Try");
|
||||
textFlow.AddLink(" enabling ", () => config.SetValue(OsuSetting.ShowConvertedBeatmaps, true));
|
||||
|
Loading…
Reference in New Issue
Block a user