diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index bf4c472..74fcf7f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -139,6 +139,8 @@ pub struct LogResult { players: Vec<Player>, /// The outcome of the fight. outcome: FightOutcome, + /// Whether the fight had the Challenge Mote turned on. + is_cm: bool, } /// A player. @@ -495,6 +497,7 @@ fn extract_info(entry: &DirEntry, log: &Log) -> LogResult { boss_name, players, outcome: get_fight_outcome(log), + is_cm: log.is_cm(), } } |