Lock user adjusted difficulty settings when changing beatmap

This commit is contained in:
Dean Herbert
2019-12-27 19:05:17 +09:00
parent 2df57918b1
commit 2c8879f0fb
3 changed files with 31 additions and 7 deletions

View File

@ -34,8 +34,8 @@ namespace osu.Game.Rulesets.Catch.Mods
{
base.TransferSettings(difficulty);
CircleSize.Value = CircleSize.Default = difficulty.CircleSize;
ApproachRate.Value = ApproachRate.Default = difficulty.ApproachRate;
TransferSetting(CircleSize, difficulty.CircleSize);
TransferSetting(ApproachRate, difficulty.ApproachRate);
}
protected override void ApplySettings(BeatmapDifficulty difficulty)