From 92cb2fc73988b09b097d2631d5cea57ca0a65a2a Mon Sep 17 00:00:00 2001 From: newby Date: Tue, 10 Oct 2023 17:48:07 -0700 Subject: [PATCH] pm: take self knockback prediction out of beta Now always enabled with `fo_pmove 1` --- csqc/pmove.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csqc/pmove.qc b/csqc/pmove.qc index 7e4225fb..aa25da53 100644 --- a/csqc/pmove.qc +++ b/csqc/pmove.qc @@ -445,7 +445,7 @@ static void PM_NudgeBounce(PM_Nudge* nudge, entity ent) { void PM_AddGrenadeExplosion(float itime, entity ent) { - if (!PM_Enabled() || !CVARF(fo_beta_nudge_explosion)) + if (!PM_Enabled()) return; FO_GrenExp exp; @@ -461,7 +461,7 @@ void PM_AddGrenadeExplosion(float itime, entity ent) { } void PM_AddSimExplosion(float itime, entity ent) { - if (!PM_Enabled() || !CVARF(fo_beta_nudge_explosion)) + if (!PM_Enabled()) return; if (ent.owner != pengine.player_ent) // Just player ents in version 0