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://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=6d316974710a435f3c5bb21dc6e6faca0571154d;hp=5a956b40964e8c4a74208fe74cc04f48983f0d65 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 478ffaca9e..97fcfcad4b 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;