Skip to content

Commit

Permalink
Remove -pm flags (kinda goes against standards)
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Sep 28, 2023
1 parent 4b11886 commit 054961d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Server.DifficultyCalculator/Commands/CalculatorCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public abstract class CalculatorCommand : CommandBase
[Option(CommandOptionType.NoValue, Template = "-dry|--dry-run", Description = "Whether to run the process without writing to the database.")]
public bool DryRun { get; set; }

[Option(CommandOptionType.SingleValue, Template = "-pm|--processing-mode", Description = "The mode in which to process beatmaps.")]
public ProcessingModes ProcessingMode { get; set; }
[Option(CommandOptionType.SingleValue, Template = "--processing-mode", Description = "The mode in which to process beatmaps.")]
public ProcessingModes ProcessingMode { get; set; } = ProcessingModes.All;

private int[] threadBeatmapIds = null!;
private IReporter reporter = null!;
Expand Down

0 comments on commit 054961d

Please sign in to comment.