Skip to content

Commit

Permalink
Increase the maximum seed range for tournament client
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Nov 3, 2022
1 parent 92dc3a3 commit ec4ac77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion osu.Game.Tournament/Models/SeedingBeatmap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class SeedingBeatmap
public Bindable<int> Seed = new BindableInt
{
MinValue = 1,
MaxValue = 64
MaxValue = 256
};
}
}
2 changes: 1 addition & 1 deletion osu.Game.Tournament/Models/SeedingResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class SeedingResult
public Bindable<int> Seed = new BindableInt
{
MinValue = 1,
MaxValue = 64
MaxValue = 256
};
}
}
2 changes: 1 addition & 1 deletion osu.Game.Tournament/Models/TournamentTeam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public double AverageRank
public Bindable<int> LastYearPlacing = new BindableInt
{
MinValue = 1,
MaxValue = 64
MaxValue = 256
};

[JsonProperty]
Expand Down

0 comments on commit ec4ac77

Please sign in to comment.