From be0d6274d696f5e50d66e56463d047ee13a9de0b Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 20 Feb 2015 14:20:32 +1100 Subject: [PATCH] Fix CTF flags getting stuck on slopes instead of sliding down --- sv_phys.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sv_phys.c b/sv_phys.c index c84f0c15..b8dd3b73 100644 --- a/sv_phys.c +++ b/sv_phys.c @@ -2716,7 +2716,8 @@ void SV_Physics_Toss (prvm_edict_t *ent) } else PRVM_serveredictfloat(ent, flags) = (int)PRVM_serveredictfloat(ent, flags) & ~FL_ONGROUND; - movetime = 0; + if (!sv_gameplayfix_slidemoveprojectiles.integer) + movetime = 0; break; } } -- 2.39.2