Fix custom legacy ID in test scene not overriding base value

This commit is contained in:
Salman Ahmed 2022-07-08 19:01:21 +03:00
parent ac3cdf103a
commit 8c7aabccb0

View File

@ -96,7 +96,7 @@ namespace osu.Game.Tests.Visual.Gameplay
public override string Description => "custom";
public override string ShortName => "custom";
public new int LegacyID => -1;
int ILegacyRuleset.LegacyID => -1;
public override ScoreProcessor CreateScoreProcessor() => new ScoreProcessor(this);
}