1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 21:13:20 +08:00

Fix incorrect reference

This commit is contained in:
smoogipoo 2021-04-12 20:49:26 +09:00
parent d2d7f77430
commit 982d8fa8b1

View File

@ -68,7 +68,7 @@ namespace osu.Game.Scoring
if (mods != null)
return mods;
if (apiMods == null)
if (localAPIMods == null)
return Array.Empty<Mod>();
var rulesetInstance = Ruleset.CreateInstance();