vec3_t wishdir;
vec3_t yawangles;
trace_t trace;
+ qboolean moving;
// jump if on ground with jump button pressed but only if it has been
// released at least once since the last jump
VectorMA(s->velocity, accelspeed, wishdir, s->velocity);
}
gravity = cl.movevars_gravity * cl.movevars_entgravity * s->cmd.frametime;
+ moving = s->velocity[0] || s->velocity[1];
if(!(cl.moveflags & MOVEFLAG_NOGRAVITYONGROUND))
{
if(cl.moveflags & MOVEFLAG_GRAVITYUNAFFECTEDBYTICRATE)
}
if (cls.protocol == PROTOCOL_QUAKEWORLD)
s->velocity[2] = 0;
+ moving = s->velocity[0] || s->velocity[1];
if (VectorLength2(s->velocity))
CL_ClientMovement_Move(s);
- if(!(cl.moveflags & MOVEFLAG_NOGRAVITYONGROUND) || !s->onground)
+ if(!(cl.moveflags & MOVEFLAG_NOGRAVITYONGROUND) || !s->onground || (s->onground && moving))
{
if(cl.moveflags & MOVEFLAG_GRAVITYUNAFFECTEDBYTICRATE)
s->velocity[2] -= gravity * 0.5f;
s->velocity[2] -= gravity * 0.5f;
else
s->velocity[2] -= gravity;
+ moving = s->velocity[0] || s->velocity[1];
CL_ClientMovement_Move(s);
- if(!(cl.moveflags & MOVEFLAG_NOGRAVITYONGROUND) || !s->onground)
+ if(!(cl.moveflags & MOVEFLAG_NOGRAVITYONGROUND) || !s->onground || (s->onground && moving))
{
if(cl.moveflags & MOVEFLAG_GRAVITYUNAFFECTEDBYTICRATE)
s->velocity[2] -= gravity * 0.5f;
vec3_t end;
#endif
trace_t trace;
+ qboolean moving;
if (time <= 0)
return 0;
gravity = 0;
if(applygravity)
{
gravity = SV_Gravity(ent);
-
+ moving = PRVM_serveredictvector(ent, velocity)[0] || PRVM_serveredictvector(ent, velocity)[1];
if(!sv_gameplayfix_nogravityonground.integer || !((int)PRVM_serveredictfloat(ent, flags) & FL_ONGROUND))
{
if (sv_gameplayfix_gravityunaffectedbyticrate.integer)
if (sv_gameplayfix_easierwaterjump.integer && ((int)PRVM_serveredictfloat(ent, flags) & FL_WATERJUMP) && !(blocked & 8))
VectorCopy(primal_velocity, PRVM_serveredictvector(ent, velocity));
+ // Mario: this workaround introduces a new bug: sliding down ramps occurs when moving sideways
+ moving = PRVM_serveredictvector(ent, velocity)[0] || PRVM_serveredictvector(ent, velocity)[1];
if(applygravity)
{
- if(!sv_gameplayfix_nogravityonground.integer || !((int)PRVM_serveredictfloat(ent, flags) & FL_ONGROUND))
+ if(!sv_gameplayfix_nogravityonground.integer || !((int)PRVM_serveredictfloat(ent, flags) & FL_ONGROUND) || (((int)PRVM_serveredictfloat(ent, flags) & FL_ONGROUND) && moving))
{
if (sv_gameplayfix_gravityunaffectedbyticrate.integer)
PRVM_serveredictvector(ent, velocity)[2] -= gravity * 0.5f;