From 0713c390b9e6639866201be8109f0689181e5412 Mon Sep 17 00:00:00 2001 From: Marco Cawthorne Date: Sun, 25 Sep 2022 16:29:20 -0700 Subject: [PATCH] Menu-FN: Force _pext_vrinputs to 0 upon init, as the physics will otherwise break. (FTEQW issue) --- src/menu-fn/entry.qc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/menu-fn/entry.qc b/src/menu-fn/entry.qc index 11296750..4ccd0a2d 100644 --- a/src/menu-fn/entry.qc +++ b/src/menu-fn/entry.qc @@ -90,6 +90,7 @@ m_init(void) * for unknown reasons. It'll be fixed */ cvar_set("r_ignoreentpvs", "0"); cvar_set("_pext_infoblobs", "1"); + cvar_set("_pext_vrinputs", "0"); cvar_set("_q3bsp_bihtraces", "1"); cvar_set("sv_gameplayfix_setmodelsize_qw", "1"); cvar_set("sv_gameplayfix_setmodelrealbox", "1");