diff --git a/source/sv_phys.c b/source/sv_phys.c index 6e5095c..17d8c14 100644 --- a/source/sv_phys.c +++ b/source/sv_phys.c @@ -1351,7 +1351,7 @@ void SV_Physics_Walk(edict_t *ent) trace_t downtrace; vec3_t groundlocation; VectorCopy(ent->v.origin,groundlocation); - groundlocation[2] = -STEPSIZE + ent->v.velocity[2]*host_frametime; + groundlocation[2] += -STEPSIZE + ent->v.velocity[2]*host_frametime; downtrace = SV_Move(ent->v.origin,ent->v.mins,ent->v.maxs,groundlocation, MOVE_NOMONSTERS,ent);