From: Mario Date: Mon, 6 Mar 2017 08:00:11 +0000 (+1000) Subject: Don't bother checking for CTS specifically if the re-spawn is intended to be silent X-Git-Tag: xonotic-v0.8.5~2782^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=6d316974710a435f3c5bb21dc6e6faca0571154d;p=xonotic%2Fxonotic-data.pk3dir.git Don't bother checking for CTS specifically if the re-spawn is intended to be silent --- 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;