Skip to content

Commit

Permalink
Update Options.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Bertie2011 committed Mar 11, 2021
1 parent bfca46c commit 747c801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DataPackChecker/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public enum LifeTime {
private const char BasePathArg = 'b';
[Option('f', "arguments-file", HelpText = "Read arguments from a file.", SetName = "Args File")]
public string ArgsPath { get; set; }
[Option('t', "life-time", HelpText = "Indicates what happens after finishing. Once = exit, Await = wait for keyboard input, Repeat = wait for keyboard input and repeat. Unless performing a check, repeat equals await.", Default = LifeTime.ONCE)]
[Option('t', "life-time", HelpText = "Indicates what happens after finishing. Once = exit, Await = wait for keyboard input, Repeat = wait for keyboard input and repeat. Unless performing a check, 'repeat' equals 'await'.", Default = LifeTime.REPEAT)]
public LifeTime Life { get; set; }
[Option(BasePathArg, "base-path", HelpText = "Base path for the minecraft folder. Ignored if data pack path is absolute or starts with a dot. An educated guess will be made if not ignored and missing.", SetName = "Check")]
public string BasePath { get; set; }
Expand Down

0 comments on commit 747c801

Please sign in to comment.