diff options
| -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 { | 
