1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-02 12:10:12 +08:00

Set TournamentBeatmap's IBeatmapInfo.Ruleset to a dummy ruleset.

This is being queried by the https://github.com/ppy/osu/blob/master/osu.Game.Rulesets.Mania/ManiaRuleset.cs#L442 but since we don't actually draw column count anywhere nor are we supposed to be running converts in tournaments it should be safe to populate it with nothing.
This commit is contained in:
StanR
2025-11-22 03:35:10 +05:00
Unverified
parent fd652982ce
commit 8900c79758
@@ -83,7 +83,7 @@ namespace osu.Game.Tournament.Models
string IBeatmapInfo.MD5Hash => throw new NotImplementedException();
IRulesetInfo IBeatmapInfo.Ruleset => throw new NotImplementedException();
IRulesetInfo IBeatmapInfo.Ruleset => new RulesetInfo();
DateTimeOffset IBeatmapSetOnlineInfo.Submitted => throw new NotImplementedException();