From 1402c0d169f3db4af74084cd323312c05b14db3b Mon Sep 17 00:00:00 2001 From: Roman Tetelman Date: Sat, 3 Oct 2009 11:55:00 +0000 Subject: * fix for jump sometimes giving less height than intended (bug 3634) --- src/game/bg_pmove.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/game') diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c index 8cd44bb3..79ede29a 100644 --- a/src/game/bg_pmove.c +++ b/src/game/bg_pmove.c @@ -809,6 +809,9 @@ static qboolean PM_CheckJump( void ) // jump away from wall BG_GetClientNormal( pm->ps, normal ); + + if( pm->ps->velocity[ 2 ] < 0 ) + pm->ps->velocity[ 2 ] = 0; VectorMA( pm->ps->velocity, BG_Class( pm->ps->stats[ STAT_CLASS ] )->jumpMagnitude, normal, pm->ps->velocity ); -- cgit