From 211e2ed22fd9e04aef5a6ca79685af45b80acaf9 Mon Sep 17 00:00:00 2001 From: Alienmario Date: Sat, 11 Jan 2025 05:49:37 +0100 Subject: [PATCH] Update srccoop_addon_landing_screen.sp --- scripting/srccoop_addon_landing_screen.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripting/srccoop_addon_landing_screen.sp b/scripting/srccoop_addon_landing_screen.sp index addc8ce..0e7823e 100644 --- a/scripting/srccoop_addon_landing_screen.sp +++ b/scripting/srccoop_addon_landing_screen.sp @@ -66,7 +66,7 @@ public void Event_PlayerChangeTeam(Event hEvent, const char[] szName, bool bDont if (!bHidden[client]) { int iTeam = hEvent.GetInt("team"); - if (iTeam == TEAM_SCIENTIST || iTeam == TEAM_MARINES || iTeam == TEAM_UNASSIGNED) + if (iTeam > TEAM_SPECTATOR || iTeam == TEAM_UNASSIGNED) { ClientCommand(client, "r_screenoverlay 0"); bHidden[client] = true;