From 743c8a215f3e59d4f9e0ef4b3b823f1a118f19dd Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 12 Sep 2018 06:22:52 +1000 Subject: [PATCH] Ignore the join delay for the host in local matches --- 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 8b70a633a..52fd58c9c 100644 --- a/qcsrc/server/client.qc +++ b/qcsrc/server/client.qc @@ -2021,7 +2021,7 @@ const int MIN_SPEC_TIME = 1; bool joinAllowed(entity this) { if (CS(this).version_mismatch) return false; - if (time < CS(this).jointime + MIN_SPEC_TIME) return false; + if (this.netaddress != "local" && time < CS(this).jointime + MIN_SPEC_TIME) return false; if (!nJoinAllowed(this, this)) return false; if (teamplay && lockteams) return false; if (MUTATOR_CALLHOOK(ForbidSpawn, this)) return false; -- 2.39.2