Add internal pathway for ensuring correct application of bindable mods

This commit is contained in:
Dean Herbert
2021-01-03 15:48:28 +09:00
parent 23e216fa0b
commit 29dbb1cc0d
3 changed files with 20 additions and 9 deletions

View File

@ -51,7 +51,7 @@ namespace osu.Game.Online.API
if (!Settings.TryGetValue(property.Name.Underscore(), out object settingValue))
continue;
((IBindable)property.GetValue(resultMod)).Parse(settingValue);
resultMod.CopyAdjustedSetting((IBindable)property.GetValue(resultMod), settingValue);
}
return resultMod;