From 356ca06f53175d9ffec4e50052a553daa13ed8d3 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 8 Mar 2020 05:27:54 +1000 Subject: [PATCH] Disable prediction when bugrigs is enabled, fixes glitchy movement --- qcsrc/common/mutators/mutator/bugrigs/bugrigs.qc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qcsrc/common/mutators/mutator/bugrigs/bugrigs.qc b/qcsrc/common/mutators/mutator/bugrigs/bugrigs.qc index 40f19d6b1..38a687f01 100644 --- a/qcsrc/common/mutators/mutator/bugrigs/bugrigs.qc +++ b/qcsrc/common/mutators/mutator/bugrigs/bugrigs.qc @@ -309,6 +309,8 @@ MUTATOR_HOOKFUNCTION(bugrigs, PlayerPhysics) #ifdef SVQC entity player = M_ARGV(0, entity); player.bugrigs_prevangles = player.angles; + + player.disableclientprediction = 2; #endif } -- 2.39.2