From 626a9d546161818ee58f96f0cdd6df9cd900a7e4 Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Mon, 13 Dec 2021 10:36:55 -0800 Subject: [PATCH] Shared: ITEM_LONGJUMP fix where I forgot to call makevectors before calculating the jump dir. --- src/shared/pmove.qc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/pmove.qc b/src/shared/pmove.qc index a38173b..91425ee 100644 --- a/src/shared/pmove.qc +++ b/src/shared/pmove.qc @@ -30,6 +30,7 @@ player::Physics_Jump(void) } else { /* Half-Life: Longjump module */ if (flags & FL_CROUCHING && g_items & 0x00008000i) { + makevectors(v_angle); velocity = v_forward * 512; velocity[2] += 100; }