mirror of
https://github.com/ppy/osu
synced 2025-01-05 13:50:03 +00:00
beatmap and line can not be null in OsuLegacyDecoder.cs
This commit is contained in:
parent
cf296d4bb2
commit
0287d3d7a0
@ -209,6 +209,11 @@ namespace osu.Game.Beatmaps.Formats
|
||||
|
||||
private void handleDifficulty(Beatmap beatmap, string line)
|
||||
{
|
||||
if (beatmap == null)
|
||||
throw new ArgumentNullException(nameof(beatmap));
|
||||
if (line == null)
|
||||
throw new ArgumentNullException(nameof(line));
|
||||
|
||||
var pair = splitKeyVal(line, ':');
|
||||
|
||||
var difficulty = beatmap.BeatmapInfo.BaseDifficulty;
|
||||
|
Loading…
Reference in New Issue
Block a user