From 6830d80f77c932eb9db594544dea4b668e3beffb Mon Sep 17 00:00:00 2001 From: ChocoTaco1 Date: Sun, 12 Jul 2020 14:10:52 -0400 Subject: [PATCH] Update EnableLogs.cs Debrief Team condition --- Classic/scripts/autoexec/EnableLogs.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Classic/scripts/autoexec/EnableLogs.cs b/Classic/scripts/autoexec/EnableLogs.cs index ce06625..8ad5e03 100644 --- a/Classic/scripts/autoexec/EnableLogs.cs +++ b/Classic/scripts/autoexec/EnableLogs.cs @@ -97,7 +97,10 @@ function ClassicChatLog(%client, %id, %team, %msg) if(strstr(%msg, "~w") != -1 || strstr(%msg, "flag") != -1) return; - %team = getTaggedString(Game.getTeamName(%team)); + if($countdownStarted) + %team = getTaggedString(Game.getTeamName(%team)); + else + %team = "Debrief"; if(%team $= "Unassigned") %team = "Observer";