From 6cb0b290e85c47ffe31eda6c13fb2c0cb137e0f6 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 9 Sep 2002 04:51:01 +0000 Subject: [PATCH] turns out it was a case of mangled build. --- client.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.qc b/client.qc index bf26b4e..6e90daa 100644 --- a/client.qc +++ b/client.qc @@ -1922,9 +1922,9 @@ void() PutClientInServer = // Set the health for the player based on class TeamFortress_SetHealth(); // Set the speed for the player based on class - //XXX causing problems self.tfstate |= TFSTATE_CANT_MOVE; + self.tfstate |= TFSTATE_CANT_MOVE; TeamFortress_SetSpeed(self); - //XXX causing problems self.tfstate &= ~TFSTATE_CANT_MOVE; + self.tfstate &= ~TFSTATE_CANT_MOVE; // Set the skin for the player based on class TeamFortress_SetSkin(self); stuffcmd(self, "v_idlescale 0\n");