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:
parent
f89eb7d75d
commit
74310da7cf
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user