projects
/
xonotic
/
xonotic-data.pk3dir.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f1a50b
)
remove a comment that no longer applies
author
Rudolf Polzer <divverent@alientrap.org>
Sat, 22 May 2010 18:10:30 +0000
(20:10 +0200)
committer
Rudolf Polzer <divverent@alientrap.org>
Sat, 22 May 2010 18:10:30 +0000
(20:10 +0200)
qcsrc/server/cl_physics.qc
patch
|
blob
|
history
diff --git
a/qcsrc/server/cl_physics.qc
b/qcsrc/server/cl_physics.qc
index bbe9ff7b7e670697eddc806fa6068d15f4cd4af7..1b6747eab16e281616fb68536204448356f98411 100644
(file)
--- a/
qcsrc/server/cl_physics.qc
+++ b/
qcsrc/server/cl_physics.qc
@@
-1168,9
+1168,6
@@
void SV_PlayerPhysics()
if(sv_airstopaccelerate)
if(self.velocity * wishdir < 0)
airaccel = sv_airstopaccelerate*maxspd_mod;
- // this doesn't play well with analog input, but can't r
- // fixed like the AirControl can. So, don't set the maxa
- // cvars when you want to support analog input.
// note that for straight forward jumping:
// step = accel * frametime * wishspeed0;
// accel = bound(0, wishspeed - vel_xy_current, step) * accelqw + step * (1 - accelqw);