1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:27:29 +08:00

Change parameter to be singular mod instead of plural

This commit is contained in:
Shivam 2021-01-25 13:24:43 +01:00
parent f89eb7d75d
commit 74310da7cf

View File

@ -32,12 +32,12 @@ namespace osu.Game.Tournament.Components
private readonly Bindable<TournamentMatch> currentMatch = new Bindable<TournamentMatch>();
private Box flash;
public TournamentBeatmapPanel(BeatmapInfo beatmap, string mods = null)
public TournamentBeatmapPanel(BeatmapInfo beatmap, string mod = null)
{
if (beatmap == null) throw new ArgumentNullException(nameof(beatmap));
Beatmap = beatmap;
this.mod = mods;
this.mod = mod;
Width = 400;
Height = HEIGHT;
}