1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-30 17:10:13 -05:00

Search & Rezurrect: fix alive player count HUD not being updated on team change

This commit is contained in:
Jbleezy
2023-12-02 04:12:01 -08:00
parent 818e3e44b1
commit 6cf6f3788a
2 changed files with 14 additions and 2 deletions

View File

@ -479,6 +479,17 @@ set_team(team)
self.head_icon = self head_icon_create();
}
if (level.scr_zm_ui_gametype_obj == "zsnr" && flag("initial_blackscreen_passed"))
{
foreach (team in level.teams)
{
if (isDefined(level.grief_score_hud_set_player_count_func))
{
[[level.grief_score_hud_set_player_count_func]](team);
}
}
}
}
head_icon_create()