1
0
Fork 0
mirror of https://github.com/ppy/osu-tools.git synced 2025-06-09 17:44:46 +09:00

Fix combo being 0 by default

This commit is contained in:
minisbett 2024-10-18 18:25:55 +02:00
parent 4e8c95fb3e
commit 96fe90cd01
No known key found for this signature in database
GPG key ID: 2DB6D529C95A0403
3 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@ namespace PerformanceCalculator.Simulate
[UsedImplicitly] [UsedImplicitly]
[Option(Template = "-C|--percent-combo <combo>", Description = "Percentage of beatmap maximum combo achieved. Alternative to combo option." [Option(Template = "-C|--percent-combo <combo>", Description = "Percentage of beatmap maximum combo achieved. Alternative to combo option."
+ " Enter as decimal 0-100.")] + " Enter as decimal 0-100.")]
public override double PercentCombo { get; } public override double PercentCombo { get; } = 100;
[UsedImplicitly] [UsedImplicitly]
[Option(Template = "-T|--tiny-droplets <tinys>", Description = "Number of tiny droplets hit. Will override accuracy if used. Otherwise is automatically calculated.")] [Option(Template = "-T|--tiny-droplets <tinys>", Description = "Number of tiny droplets hit. Will override accuracy if used. Otherwise is automatically calculated.")]

View file

@ -30,7 +30,7 @@ namespace PerformanceCalculator.Simulate
[UsedImplicitly] [UsedImplicitly]
[Option(Template = "-C|--percent-combo <combo>", Description = "Percentage of beatmap maximum combo achieved. Alternative to combo option." [Option(Template = "-C|--percent-combo <combo>", Description = "Percentage of beatmap maximum combo achieved. Alternative to combo option."
+ " Enter as decimal 0-100.")] + " Enter as decimal 0-100.")]
public override double PercentCombo { get; } public override double PercentCombo { get; } = 100;
public override Ruleset Ruleset => new OsuRuleset(); public override Ruleset Ruleset => new OsuRuleset();

View file

@ -28,7 +28,7 @@ namespace PerformanceCalculator.Simulate
[UsedImplicitly] [UsedImplicitly]
[Option(Template = "-C|--percent-combo <combo>", Description = "Percentage of beatmap maximum combo achieved. Alternative to combo option." [Option(Template = "-C|--percent-combo <combo>", Description = "Percentage of beatmap maximum combo achieved. Alternative to combo option."
+ " Enter as decimal 0-100.")] + " Enter as decimal 0-100.")]
public override double PercentCombo { get; } public override double PercentCombo { get; } = 100;
public override Ruleset Ruleset => new TaikoRuleset(); public override Ruleset Ruleset => new TaikoRuleset();