From 9b838f989871bc91c0bad211b8a4c3c7863db770 Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Wed, 22 Sep 2021 21:09:35 +0200 Subject: [PATCH] PMove: Adjust jumpheight. Since we removed airstepping, jumps have become harder. This should be approximately close to the original. --- src/shared/pmove.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/pmove.qc b/src/shared/pmove.qc index 346bbf6..a38173b 100644 --- a/src/shared/pmove.qc +++ b/src/shared/pmove.qc @@ -34,6 +34,6 @@ player::Physics_Jump(void) velocity[2] += 100; } if (flags & FL_ONGROUND) - velocity[2] += 240; + velocity[2] += 265; } }