Set DummyWorkingBeatmap difficulties to 0 for better fallback display

This commit is contained in:
Jamie Taylor 2019-03-08 18:17:50 +09:00
parent 054db48089
commit 800007c378
No known key found for this signature in database
GPG Key ID: 2ACFA8B6370B8C8C
1 changed files with 6 additions and 1 deletions

View File

@ -26,7 +26,12 @@ public DummyWorkingBeatmap(OsuGameBase game = null)
Title = "no beatmaps available!"
},
BeatmapSet = new BeatmapSetInfo(),
BaseDifficulty = new BeatmapDifficulty(),
BaseDifficulty = new BeatmapDifficulty
{
DrainRate = 0,
CircleSize = 0,
OverallDifficulty = 0,
},
Ruleset = new DummyRulesetInfo()
})
{