From e19ae5af1136a913d72fd12b8cf136faf362c0d9 Mon Sep 17 00:00:00 2001 From: havoc Date: Sun, 28 May 2006 20:43:18 +0000 Subject: [PATCH 1/1] disable canjump check until it's fixed git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6402 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl_input.c b/cl_input.c index 83f688ab..357ce6c5 100644 --- a/cl_input.c +++ b/cl_input.c @@ -925,7 +925,7 @@ void CL_ClientMovement_Physics_Walk(cl_clientmovement_state_t *s) // jump if on ground with jump button pressed but only if it has been // released at least once since the last jump - if (s->q.jump && s->canjump && s->onground) + if (s->q.jump && s->onground)// && s->canjump) // FIXME: canjump doesn't work properly { s->velocity[2] += s->movevars_jumpvelocity; s->onground = false; -- 2.39.2