diff options
| author | Daniel <kingdread@gmx.de> | 2020-04-29 16:05:04 +0200 | 
|---|---|---|
| committer | Daniel <kingdread@gmx.de> | 2020-04-29 16:05:04 +0200 | 
| commit | 5e38bdfa8662ed5bdc100004f206e467cff9e6b5 (patch) | |
| tree | 79130518da39d3a4ee7b06dc8483ce4ae14d666c /src | |
| parent | d564421e9fb71da21ef02d8b711af0e8471bb602 (diff) | |
| download | raidgrep-5e38bdfa8662ed5bdc100004f206e467cff9e6b5.tar.gz raidgrep-5e38bdfa8662ed5bdc100004f206e467cff9e6b5.tar.bz2 raidgrep-5e38bdfa8662ed5bdc100004f206e467cff9e6b5.zip | |
add more help text about the boss names
Everybody calls bosses by different names (Soulless Horror vs Desmina,
Super Kodan Brothers, ...), so it might be good to have a list ready in
the help message.
Other names can still be used, but those are the end-user documented
ones now.
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 9 | 
1 files changed, 8 insertions, 1 deletions
| diff --git a/src/main.rs b/src/main.rs index 8cd1329..712da94 100644 --- a/src/main.rs +++ b/src/main.rs @@ -33,7 +33,6 @@ mod output;  /// be within an "all(player: ...)" or "any(player: ...)" construct.  ///  /// PREDICATES: -///  ///     -character REGEX        True if the character name matches the regex.  ///     -account REGEX          True if the account name matches the regex.  ///     -name REGEX             True if either character or account name match. @@ -48,6 +47,14 @@ mod output;  ///     -player REGEX           Shorthand to check if any player in the log has the given name.  ///     -include                Always evaluates to including the log.  ///     -exclude                Always evaluates to excluding the log. +/// +/// BOSS NAMES: +///     The following names can be used with the -boss filter: +///       vg, gorseval, sabetha, slothasor, matthias, kc, xera, cairn, +///       mo, samarog, deimos, desmina, dhuum, ca, largos, qadim, +///       adina, sabir, qadimp, skorvald, artsariiv, arkk, mama, siax, +///       ensolyss, icebrood, fraenir, kodans, boneskinner, whisper. +///     Names can also be comma separated.  #[derive(StructOpt, Debug)]  #[structopt(verbatim_doc_comment)]  pub struct Opt { | 
