From 448aac784e7e7545d5e2999720e24a71481e9714 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 24 Oct 2018 13:16:11 +1000 Subject: [PATCH] Enable gravity by default so we can bounce around maps --- qcsrc/ecs/cl_main.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/ecs/cl_main.qc b/qcsrc/ecs/cl_main.qc index e84c8f3c8..48c0cf03c 100644 --- a/qcsrc/ecs/cl_main.qc +++ b/qcsrc/ecs/cl_main.qc @@ -16,8 +16,8 @@ it.com_phys_stepheight = 31; it.com_phys_jumpvel = 260; it.com_phys_friction = 6; - //it.com_phys_gravity = '0 0 800'; - it.com_phys_noclip = true; + it.com_phys_gravity = '0 0 800'; + it.com_phys_noclip = false; it.com_phys_pos = '0 0 200'; } -- 2.39.2