From 2448b186246e3ccf6fc76895c47a9d342fac227f Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 29 Aug 2002 18:41:22 +0000 Subject: [PATCH] don't let clients scout around while customizing --- client.qc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client.qc b/client.qc index 7ea0708..6bfb49c 100644 --- a/client.qc +++ b/client.qc @@ -1919,7 +1919,9 @@ void() PutClientInServer = // Set the health for the player based on class TeamFortress_SetHealth(); // Set the speed for the player based on class + self.tfstate |= TFSTATE_CANT_MOVE; TeamFortress_SetSpeed(self); + self.tfstate &= ~TFSTATE_CANT_MOVE; // Set the skin for the player based on class TeamFortress_SetSkin(self); stuffcmd(self, "v_idlescale 0\n");