diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/analyzers/fractals.rs | 2 | ||||
| -rw-r--r-- | src/lib.rs | 8 | 
2 files changed, 5 insertions, 5 deletions
| diff --git a/src/analyzers/fractals.rs b/src/analyzers/fractals.rs index 69b7f17..5d4faf8 100644 --- a/src/analyzers/fractals.rs +++ b/src/analyzers/fractals.rs @@ -137,7 +137,7 @@ impl<'log> Analyzer for Skorvald<'log> {          }          self.log -            .npcs() +            .characters()              .any(|character| SKORVALD_CM_ANOMALY_IDS.contains(&character.id()))      } @@ -738,8 +738,8 @@ impl Log {          self.agents.iter().filter_map(|a| a.as_player())      } -    /// Return an iterator over all agents that are NPCs. -    pub fn npcs(&self) -> impl Iterator<Item = &Agent<Character>> { +    /// Return an iterator over all agents that are characters. +    pub fn characters(&self) -> impl Iterator<Item = &Agent<Character>> {          self.agents.iter().filter_map(|a| a.as_character())      } @@ -753,7 +753,7 @@ impl Log {      /// Be careful with encounters that have multiple boss agents, such as Trio      /// and Xera.      pub fn boss(&self) -> &Agent { -        self.npcs() +        self.characters()              .find(|c| c.character().id == self.boss_id)              .map(Agent::erase)              .expect("Boss has no agent!") @@ -768,7 +768,7 @@ impl Log {              .encounter()              .map(Encounter::bosses)              .unwrap_or(&[] as &[_]); -        self.npcs() +        self.characters()              .filter(|c| bosses.iter().any(|boss| *boss as u16 == c.character().id))              .map(Agent::erase)              .collect() | 
