From 9e57fbef6c87aeeb7005a896ce1038d16ab836ad Mon Sep 17 00:00:00 2001 From: Samual Date: Sun, 14 Aug 2011 19:27:12 -0400 Subject: [PATCH] Make movetype_spectator behave the same way movetype_fly does with free movement --- qcsrc/server/cl_physics.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/cl_physics.qc b/qcsrc/server/cl_physics.qc index 4af6dac1c..5f82d61e5 100644 --- a/qcsrc/server/cl_physics.qc +++ b/qcsrc/server/cl_physics.qc @@ -963,7 +963,7 @@ void SV_PlayerPhysics() { RaceCarPhysics(); } - else if (self.movetype == MOVETYPE_NOCLIP || self.movetype == MOVETYPE_FLY) + else if (self.movetype == MOVETYPE_NOCLIP || self.movetype == MOVETYPE_FLY || self.movetype == MOVETYPE_SPECTATOR) { // noclipping or flying self.flags &~= FL_ONGROUND; -- 2.39.2