mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 18:12:56 +08:00
Fix song select placeholder not showing convert hint for custom rulesets
This commit is contained in:
parent
e5dd7b1654
commit
e1b434b5dc
@ -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: 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.
|
// 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.AddParagraph("- Try");
|
||||||
textFlow.AddLink(" enabling ", () => config.SetValue(OsuSetting.ShowConvertedBeatmaps, true));
|
textFlow.AddLink(" enabling ", () => config.SetValue(OsuSetting.ShowConvertedBeatmaps, true));
|
||||||
|
Loading…
Reference in New Issue
Block a user