From: Samual Date: Sat, 4 Jun 2011 00:51:53 +0000 (-0400) Subject: Whoops, forgot to make this check use movetype_spectator instead of movetype_fly... X-Git-Tag: xonotic-v0.5.0~109^2~8 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=6426f2fc8a6e41ebd34a33dd24a23fd6a9926631;p=xonotic%2Fxonotic-data.pk3dir.git Whoops, forgot to make this check use movetype_spectator instead of movetype_fly.. maybe this is why I was still having issues ;D --- diff --git a/qcsrc/server/cl_client.qc b/qcsrc/server/cl_client.qc index a1703b97d..9326cec68 100644 --- a/qcsrc/server/cl_client.qc +++ b/qcsrc/server/cl_client.qc @@ -2518,7 +2518,7 @@ void ObserverThink() self.classname = "spectator"; } } else { - prefered_movetype = (self.cvar_cl_clippedspectating ? MOVETYPE_FLY : MOVETYPE_NOCLIP); + prefered_movetype = (self.cvar_cl_clippedspectating ? MOVETYPE_SPECTATOR : MOVETYPE_NOCLIP); if (self.movetype != prefered_movetype) self.movetype = prefered_movetype; }