diff options
Diffstat (limited to 'src/analyzers/raids/w5.rs')
-rw-r--r-- | src/analyzers/raids/w5.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/analyzers/raids/w5.rs b/src/analyzers/raids/w5.rs index 578cea8..f914031 100644 --- a/src/analyzers/raids/w5.rs +++ b/src/analyzers/raids/w5.rs @@ -38,6 +38,7 @@ impl<'log> Analyzer for SoullessHorror<'log> { } fn outcome(&self) -> Option<Outcome> { + check_reward!(self.log); Outcome::from_bool(self.log.events().iter().any(|event| { if let EventKind::BuffApplication { buff_id, @@ -85,6 +86,7 @@ impl<'log> Analyzer for Dhuum<'log> { } fn outcome(&self) -> Option<Outcome> { + check_reward!(self.log); Outcome::from_bool(helpers::boss_is_dead(self.log)) } } |