From 1d78c3c0be686a2d8ba9f6a6630e54b2f878026d Mon Sep 17 00:00:00 2001 From: timokoesters Date: Sun, 26 May 2019 00:34:24 +0200 Subject: [PATCH] Fix nametags showing on dead players (maybe) Former-commit-id: 94548e131ee7c94fc5546fa7410fc9694d1db68e --- voxygen/src/hud/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index fff60328f6..1599027ba6 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -305,10 +305,10 @@ impl Hud { let mut name_id_walker = self.ids.name_tags.walk(); let mut health_id_walker = self.ids.health_bars.walk(); let mut health_back_id_walker = self.ids.health_bar_backs.walk(); - for (pos, name) in (&entities, &pos, &actor, player.maybe()) + for (pos, name) in (&entities, &pos, &actor, &stats, player.maybe()) .join() - .filter(|(entity, _, _, _)| *entity != me) - .map(|(entity, pos, actor, player)| match actor { + .filter(|(entity, _, _, stats, _)| *entity != me && !stats.is_dead()) + .map(|(entity, pos, actor, _, player)| match actor { comp::Actor::Character { name: char_name, .. } => {