From 2b84c25d7445eaef217edad2bbd22c3a616869b1 Mon Sep 17 00:00:00 2001 From: bones_was_here Date: Fri, 22 Sep 2023 07:52:15 +1000 Subject: [PATCH] Explicitly enable sv_gameplayfix_unstickplayers Xonotic's QC physics still depend on this cvar, but the feature is deprecated in current DP. --- qcsrc/common/stats.qh | 2 +- xonotic-server.cfg | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/qcsrc/common/stats.qh b/qcsrc/common/stats.qh index e834d3e30..b7be1425c 100644 --- a/qcsrc/common/stats.qh +++ b/qcsrc/common/stats.qh @@ -204,7 +204,7 @@ int autocvar_sv_gameplayfix_easierwaterjump = 1; int autocvar_sv_gameplayfix_stepdown = 2; float autocvar_sv_gameplayfix_stepdown_maxspeed = 0; int autocvar_sv_gameplayfix_stepmultipletimes = 1; -int autocvar_sv_gameplayfix_unstickplayers = 0; +int autocvar_sv_gameplayfix_unstickplayers; int autocvar_sv_gameplayfix_fixedcheckwatertransition = 1; int autocvar_sv_gameplayfix_slidemoveprojectiles = 1; int autocvar_sv_gameplayfix_grenadebouncedownslopes = 1; diff --git a/xonotic-server.cfg b/xonotic-server.cfg index 707e2ba8e..a64f8d896 100644 --- a/xonotic-server.cfg +++ b/xonotic-server.cfg @@ -545,6 +545,9 @@ alias pm_gw "prvm_globalwatchpoint menu ${* ?}" // otherwise, antilag breaks sv_gameplayfix_consistentplayerprethink 1 +// Xonotic's QC physics still depend on this cvar (feature deprecated in DP master) +sv_gameplayfix_unstickplayers 1 + // improve some minor details sv_gameplayfix_gravityunaffectedbyticrate 1 sv_gameplayfix_nogravityonground 1 -- 2.39.2