From b6169b3113e6573f25df7b1a95da7b8b94af635e Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 9 Sep 2002 04:18:07 +0000 Subject: [PATCH] revert my movement hack to prevent scouting as it's causing problems --- client.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.qc b/client.qc index 6e90daa..bf26b4e 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 - self.tfstate |= TFSTATE_CANT_MOVE; + //XXX causing problems self.tfstate |= TFSTATE_CANT_MOVE; TeamFortress_SetSpeed(self); - self.tfstate &= ~TFSTATE_CANT_MOVE; + //XXX causing problems self.tfstate &= ~TFSTATE_CANT_MOVE; // Set the skin for the player based on class TeamFortress_SetSkin(self); stuffcmd(self, "v_idlescale 0\n");