diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 10 | 
1 files changed, 2 insertions, 8 deletions
| diff --git a/src/main.rs b/src/main.rs index 5711854..4052d59 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,7 +9,7 @@ use std::{  use anyhow::{anyhow, Context, Result};  use clap::Clap; -use evtclib::{analyzers::helpers, Boss, Compression, Log}; +use evtclib::{Boss, Compression, Log};  use log::{debug, error, info, warn};  use notify::{self, DebouncedEvent, RecursiveMode, Watcher};  use regex::Regex; @@ -198,13 +198,7 @@ fn should_upload(config: &Config, log: &Log) -> bool {          return false;      }      // Only upload Skorvald if it actually was in 100 CM (and not in in lower-tier or non-CM). -    // Currently, CM detection is broken, so check that we are at least in T4 and assume that every -    // T4 Skorvald is a CM Skorvald. -    if log.encounter() == Some(Boss::Skorvald) -        && helpers::boss_health(log) -            .map(|h| h < 5_526_000) -            .unwrap_or(false) -    { +    if log.encounter() == Some(Boss::Skorvald) && !log.is_cm() {          return false;      }      // Only upload logs that are long enough | 
