From 78ce257d871effbb0b2b41566e2d27453b50441f Mon Sep 17 00:00:00 2001 From: kitswas <90329875+kitswas@users.noreply.github.com> Date: Fri, 2 Sep 2022 10:02:35 +0530 Subject: [PATCH] Removed numbers from the poisebar --- voxygen/src/hud/skillbar.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/voxygen/src/hud/skillbar.rs b/voxygen/src/hud/skillbar.rs index 16f6b5c7ad..82515536b5 100644 --- a/voxygen/src/hud/skillbar.rs +++ b/voxygen/src/hud/skillbar.rs @@ -523,17 +523,13 @@ impl<'a> Skillbar<'a> { self.energy.current().round() as u32, self.energy.maximum().round() as u32 ), - format!( - "{}/{}", - self.poise.current().round() as u32, - self.poise.maximum().round() as u32 - ), + format!(""), // Don't obscure the tick mark )) } else if let BarNumbers::Percent = bar_values { Some(( format!("{}%", hp_percentage as u32), format!("{}%", energy_percentage as u32), - format!("{}%", poise_percentage as u32), + format!(""), // Don't obscure the tick mark )) } else { None