From 6d316974710a435f3c5bb21dc6e6faca0571154d Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 6 Mar 2017 18:00:11 +1000 Subject: [PATCH] Don't bother checking for CTS specifically if the re-spawn is intended to be silent --- qcsrc/server/client.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/client.qc b/qcsrc/server/client.qc index 478ffaca9..97fcfcad4 100644 --- a/qcsrc/server/client.qc +++ b/qcsrc/server/client.qc @@ -901,7 +901,7 @@ void KillIndicator_Think(entity this) ClientKill_Now(this.owner); return; } - else if(g_cts && this.health == 1) // health == 1 means that it's silent + else if(this.health == 1) // health == 1 means that it's silent { this.nextthink = time + 1; this.cnt -= 1; -- 2.39.2