From bd8cce4502d7fb44c29bbb29e0b0c48b0bb88dc0 Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Tue, 4 Jan 2022 14:28:34 -0800 Subject: [PATCH] Remove bleedout bar showing for last player downed --- scripts/zm/_zm_reimagined.gsc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/zm/_zm_reimagined.gsc b/scripts/zm/_zm_reimagined.gsc index f6a88a2c..4c761209 100644 --- a/scripts/zm/_zm_reimagined.gsc +++ b/scripts/zm/_zm_reimagined.gsc @@ -1542,6 +1542,12 @@ bleedout_bar_hud() { self waittill("entering_last_stand"); + // don't show for last player downed + if(!self maps/mp/zombies/_zm_laststand::player_is_in_laststand()) + { + continue; + } + self thread bleedout_bar_hud_updatebar(bleedout_bar); bleedout_bar showelem();