mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 12:33:01 +08:00
Merge pull request #21092 from peppy/increase-tourney-max-seed
Increase the maximum seed range for tournament client
This commit is contained in:
commit
0aa8dfe11c
@ -18,7 +18,7 @@ namespace osu.Game.Tournament.Models
|
|||||||
public Bindable<int> Seed = new BindableInt
|
public Bindable<int> Seed = new BindableInt
|
||||||
{
|
{
|
||||||
MinValue = 1,
|
MinValue = 1,
|
||||||
MaxValue = 64
|
MaxValue = 256
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ namespace osu.Game.Tournament.Models
|
|||||||
public Bindable<int> Seed = new BindableInt
|
public Bindable<int> Seed = new BindableInt
|
||||||
{
|
{
|
||||||
MinValue = 1,
|
MinValue = 1,
|
||||||
MaxValue = 64
|
MaxValue = 256
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,7 @@ namespace osu.Game.Tournament.Models
|
|||||||
public Bindable<int> LastYearPlacing = new BindableInt
|
public Bindable<int> LastYearPlacing = new BindableInt
|
||||||
{
|
{
|
||||||
MinValue = 1,
|
MinValue = 1,
|
||||||
MaxValue = 64
|
MaxValue = 256
|
||||||
};
|
};
|
||||||
|
|
||||||
[JsonProperty]
|
[JsonProperty]
|
||||||
|
Loading…
Reference in New Issue
Block a user