mirror of
https://github.com/ppy/osu-tools.git
synced 2025-06-09 09:35:15 +09:00
Fix combo being 0 by default
This commit is contained in:
parent
4e8c95fb3e
commit
96fe90cd01
3 changed files with 3 additions and 3 deletions
|
@ -24,7 +24,7 @@ namespace PerformanceCalculator.Simulate
|
|||
[UsedImplicitly]
|
||||
[Option(Template = "-C|--percent-combo <combo>", Description = "Percentage of beatmap maximum combo achieved. Alternative to combo option."
|
||||
+ " Enter as decimal 0-100.")]
|
||||
public override double PercentCombo { get; }
|
||||
public override double PercentCombo { get; } = 100;
|
||||
|
||||
[UsedImplicitly]
|
||||
[Option(Template = "-T|--tiny-droplets <tinys>", Description = "Number of tiny droplets hit. Will override accuracy if used. Otherwise is automatically calculated.")]
|
||||
|
|
|
@ -30,7 +30,7 @@ namespace PerformanceCalculator.Simulate
|
|||
[UsedImplicitly]
|
||||
[Option(Template = "-C|--percent-combo <combo>", Description = "Percentage of beatmap maximum combo achieved. Alternative to combo option."
|
||||
+ " Enter as decimal 0-100.")]
|
||||
public override double PercentCombo { get; }
|
||||
public override double PercentCombo { get; } = 100;
|
||||
|
||||
public override Ruleset Ruleset => new OsuRuleset();
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ namespace PerformanceCalculator.Simulate
|
|||
[UsedImplicitly]
|
||||
[Option(Template = "-C|--percent-combo <combo>", Description = "Percentage of beatmap maximum combo achieved. Alternative to combo option."
|
||||
+ " Enter as decimal 0-100.")]
|
||||
public override double PercentCombo { get; }
|
||||
public override double PercentCombo { get; } = 100;
|
||||
|
||||
public override Ruleset Ruleset => new TaikoRuleset();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue