mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
Changed default selection type and added suggestions from PR feedback
This commit is contained in:
@ -20,7 +20,7 @@ namespace osu.Game.Configuration
|
||||
Set(OsuSetting.DisplayStarsMinimum, 0.0, 0, 10);
|
||||
Set(OsuSetting.DisplayStarsMaximum, 10.0, 0, 10);
|
||||
|
||||
Set(OsuSetting.SelectionRandomType, SelectionRandomType.Random);
|
||||
Set(OsuSetting.SelectionRandomType, SelectionRandomType.RandomPermutation);
|
||||
|
||||
Set(OsuSetting.ChatDisplayHeight, ChatOverlay.DEFAULT_HEIGHT, 0.2, 1);
|
||||
|
||||
|
@ -7,9 +7,9 @@ namespace osu.Game.Configuration
|
||||
{
|
||||
public enum SelectionRandomType
|
||||
{
|
||||
[Description("Random")]
|
||||
Random,
|
||||
[Description("Never repeat")]
|
||||
RandomPermutation
|
||||
RandomPermutation,
|
||||
[Description("Random")]
|
||||
Random
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user