tracker don't see npcs

This commit is contained in:
catvayor 2024-09-08 15:06:45 +02:00
parent c965c4d2c9
commit 86e758c057
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -73,6 +73,12 @@ impl TrackedState {
}
}
}
pub fn npc(&self) -> bool {
match self {
Vieux { color, .. } => *color != 1,
Conscrit { .. } => false,
}
}
pub fn admin_color(&self) -> u8 {
match self {
Vieux { color, invisible } => {
@ -218,12 +224,9 @@ pub fn apparent_info(
) -> Option<TrackedInfo> {
if watcher.id == team.id {
None
} else if let Conscrit {
captured, ..
} = watcher.state
{
} else if let Conscrit { captured, .. } = watcher.state {
if captured {
if team.state.invisible() {
if team.state.invisible() || team.state.npc() {
None
} else if team.state.blurred() {
let mut rng = rand::thread_rng();