From 9f612ec82a8049ace253a966782b982d279d50ab Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 28 Sep 2001 22:07:26 +0000 Subject: [PATCH] this fixes the rendering of the player when not in chasecam mode. not sure what it does for chasecam mode. --- qw/source/cl_ents.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/cl_ents.c b/qw/source/cl_ents.c index 943830452..912a65957 100644 --- a/qw/source/cl_ents.c +++ b/qw/source/cl_ents.c @@ -805,7 +805,7 @@ CL_LinkPlayers (void) // things (due to lack of lights?), so I'm leaving this as is for now. // the player object never gets added - if (j == cl.playernum && !Cam_DrawPlayer (j)) { + if (j == cl.playernum && Cam_DrawPlayer (j)) { r_player_entity = &cl_player_ents[state - frame->playerstate]; continue; }