aboutsummaryrefslogtreecommitdiff
path: root/src/analyzers/raids/w6.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/analyzers/raids/w6.rs')
-rw-r--r--src/analyzers/raids/w6.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/analyzers/raids/w6.rs b/src/analyzers/raids/w6.rs
index 97a2094..2284933 100644
--- a/src/analyzers/raids/w6.rs
+++ b/src/analyzers/raids/w6.rs
@@ -36,6 +36,7 @@ impl<'log> Analyzer for ConjuredAmalgamate<'log> {
}
fn outcome(&self) -> Option<Outcome> {
+ check_reward!(self.log);
for event in self.log.events() {
if let EventKind::Spawn { agent_addr } = event.kind() {
if self
@@ -85,6 +86,7 @@ impl<'log> Analyzer for TwinLargos<'log> {
}
fn outcome(&self) -> Option<Outcome> {
+ check_reward!(self.log);
let mut nikare_dead = false;
let mut kenut_dead = false;
@@ -144,6 +146,7 @@ impl<'log> Analyzer for Qadim<'log> {
}
fn outcome(&self) -> Option<Outcome> {
+ check_reward!(self.log);
Outcome::from_bool(helpers::players_exit_after_boss(self.log))
}
}