mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 16:43:52 +09:00
Invert condition
This commit is contained in:
@ -225,8 +225,9 @@ namespace osu.Game.Tournament
|
||||
{
|
||||
foreach (var b in r.Beatmaps.ToList())
|
||||
{
|
||||
if (b.BeatmapInfo == null)
|
||||
{
|
||||
if (b.BeatmapInfo != null)
|
||||
continue;
|
||||
|
||||
if (b.ID > 0)
|
||||
{
|
||||
var req = new GetBeatmapRequest(new BeatmapInfo { OnlineBeatmapID = b.ID });
|
||||
@ -241,7 +242,6 @@ namespace osu.Game.Tournament
|
||||
r.Beatmaps.Remove(b);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return addedInfo;
|
||||
}
|
||||
|
Reference in New Issue
Block a user