Skip to content

Commit

Permalink
corrected help
Browse files Browse the repository at this point in the history
  • Loading branch information
Suremaker committed May 16, 2021
1 parent 007aba5 commit 7558e7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EdsmScanner/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ static async Task<int> Main(string[] args)
new Option<bool>(new []{"--plot-journey","-p"},false,"Plot journey (default: false)"),
new Option<bool>(new []{"--include-bodies","-b"},false,"Include bodies in systems.txt (default: false)"),
new Option<TimeSpan>(new []{"--cache-duration"},TimeSpan.FromMinutes(30),"Duration on how long system details are cached (default: 00:30:00)"),
new Option<string[]>(new []{"--filter-body","-fb"},Array.Empty<string>,"Body filter(s) written in form on LINQ expression like: IsScoopable==true. When applied, only the systems with at least one matching body will be returned."),
new Option<string[]>(new []{"--filter-system","-fs"},Array.Empty<string>,"System filter(s) written in form on LINQ expression like: StarCount > 1.")
new Option<string[]>(new []{"--filter-body","-fb"},Array.Empty<string>,$"Body filter(s) written in form on LINQ expression like: \"{nameof(SystemBody.IsScoopable)}==true\". When applied, only the systems with at least one matching body will be returned."),
new Option<string[]>(new []{"--filter-system","-fs"},Array.Empty<string>,$"System filter(s) written in form on LINQ expression like: \"{nameof(SystemDetails.DiscoveredStars)} > 1\".")
};
cmd.Description = "Edsm Scanner";
cmd.AddArgument(new Argument<string>("origin-system") { Description = "Origin system name" });
Expand Down

0 comments on commit 7558e7c

Please sign in to comment.