Tweak player physics to be closer to how 1.5 on WON feels. Disable airstepping.

This commit is contained in:
Marco Cawthorne 2022-04-23 17:39:05 -07:00
parent 3ffd8262b9
commit 91c70269f6
Signed by: eukara
GPG key ID: C196CD8BA993248A
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
#define PMOVE_STEPHEIGHT 18
#define PMOVE_AIRSTEPHEIGHT 18
#define PMOVE_AIRSTEPHEIGHT 0
#define PMOVE_FRICTION 4
#define PMOVE_EDGEFRICTION 1
#define PMOVE_STOPSPEED 75

View file

@ -147,6 +147,6 @@ player::Physics_Jump(void)
} else {
/* slow the player down a bit to prevent bhopping like crazy */
velocity *= 0.80f;
velocity[2] += 200;
velocity[2] += 260;
}
}