no message

This commit is contained in:
Scott Brooks 2001-06-19 01:34:02 +00:00
parent b37c00c9d0
commit 6286e89453
2 changed files with 4 additions and 2 deletions

View file

@ -404,6 +404,7 @@ static qboolean PM_CheckJump( void ) {
pm->ps->groundEntityNum = ENTITYNUM_NONE;
// Blaze: check for double jump
if (pm->ps->stats[STAT_JUMPTIME] > 0) {
pm->ps->velocity[2] += JUMP_VELOCITY;
pm->ps->velocity[2] += 100; // More velocity

View file

@ -238,10 +238,11 @@ void PM_StepSlideMove( qboolean gravity ) {
// never step up when you still have up velocity
if ( pm->ps->velocity[2] > 0 && (trace.fraction == 1.0 ||
DotProduct(trace.plane.normal, up) < 0.7)) {
if ( pm->ps->stats[STAT_JUMPTIME] <= 0)
/* if ( pm->ps->stats[STAT_JUMPTIME] <= 0) //Blaze: Removed to stop a little skip, it used to nead this, but mabey 1.27 fixed this
{
Com_Printf("Jump Check\n");
return; // Blaze RE: Allow step up or second jump while jumping
}
}*/
}
VectorCopy (pm->ps->origin, down_o);