From 40eb55d0d35bacf4918bc981b25249ee37ac1fc7 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 13 Aug 2023 08:57:30 +0100 Subject: [PATCH] Fix hand not showing in JKO when saber is thrown --- Projects/Android/jni/OpenJK/codeJK2/cgame/cg_view.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/Android/jni/OpenJK/codeJK2/cgame/cg_view.cpp b/Projects/Android/jni/OpenJK/codeJK2/cgame/cg_view.cpp index 0c92f71..5b6e56b 100644 --- a/Projects/Android/jni/OpenJK/codeJK2/cgame/cg_view.cpp +++ b/Projects/Android/jni/OpenJK/codeJK2/cgame/cg_view.cpp @@ -2109,7 +2109,7 @@ wasForceSpeed=isForceSpeed; VectorScale( handEnt.axis[i], (!vr->right_handed || i != 1) ? 1.0f : -1.0f, handEnt.axis[i] ); } - CG_AddRefEntityWithPowerups(&handEnt, cent->currentState.powerups, cent); + CG_AddRefEntityWithPowerups(&handEnt, cent->currentState.powerups, cent, true); } } }