mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-06-01 09:02:08 +00:00
fix a tiny case&paste (?) error that prevented players from being drawn.
This commit is contained in:
parent
c7031b20f3
commit
5eb35f0b2a
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ Cam_DrawPlayer (int playernum)
|
||||||
{
|
{
|
||||||
if (atoi (Info_ValueForKey (cl.serverinfo, "chase")) == 0
|
if (atoi (Info_ValueForKey (cl.serverinfo, "chase")) == 0
|
||||||
|| chase_active->int_val == 0)
|
|| chase_active->int_val == 0)
|
||||||
return false;
|
return true;
|
||||||
|
|
||||||
if (cl.spectator && autocam && locked && cl_chasecam->int_val &&
|
if (cl.spectator && autocam && locked && cl_chasecam->int_val &&
|
||||||
spec_track == playernum)
|
spec_track == playernum)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue