mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 06:52:56 +08:00
Switch back to FirstOrDefault to allow for weird testing logic to pass
This commit is contained in:
parent
29dbb1cc0d
commit
99fa0e25dc
@ -41,7 +41,7 @@ namespace osu.Game.Online.API
|
||||
|
||||
public Mod ToMod(Ruleset ruleset)
|
||||
{
|
||||
Mod resultMod = ruleset.GetAllMods().SingleOrDefault(m => m.Acronym == Acronym);
|
||||
Mod resultMod = ruleset.GetAllMods().FirstOrDefault(m => m.Acronym == Acronym);
|
||||
|
||||
if (resultMod == null)
|
||||
throw new InvalidOperationException($"There is no mod in the ruleset ({ruleset.ShortName}) matching the acronym {Acronym}.");
|
||||
|
Loading…
Reference in New Issue
Block a user