From: Mario Date: Sun, 3 Jul 2016 23:37:49 +0000 (+1000) Subject: Invert the cvar use X-Git-Tag: xonotic-v0.8.2~700^2~99 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f3c95576330bb8cbc7fa74651afdcbe6370dd1b6;p=xonotic%2Fxonotic-data.pk3dir.git Invert the cvar use --- diff --git a/qcsrc/lib/csqcmodel/cl_player.qc b/qcsrc/lib/csqcmodel/cl_player.qc index 3b4c5fe69..1a8ba710a 100644 --- a/qcsrc/lib/csqcmodel/cl_player.qc +++ b/qcsrc/lib/csqcmodel/cl_player.qc @@ -255,7 +255,7 @@ void CSQCPlayer_SetViewLocation() /** Called once per CSQC_UpdateView() */ void CSQCPlayer_SetCamera() { - const vector v0 = ((intermission && autocvar_cl_movement_intermissionrunning) ? '0 0 0' : pmove_vel); // TRICK: pmove_vel is set by the engine when we get here. No need to network velocity + const vector v0 = ((intermission && !autocvar_cl_movement_intermissionrunning) ? '0 0 0' : pmove_vel); // TRICK: pmove_vel is set by the engine when we get here. No need to network velocity const float vh = STAT(VIEWHEIGHT); const vector pl_viewofs = STAT(PL_VIEW_OFS, NULL); const vector pl_viewofs_crouch = STAT(PL_CROUCH_VIEW_OFS, NULL);