From ad11fc052ec9a979b10face9b5c216d35e13071f Mon Sep 17 00:00:00 2001 From: havoc Date: Sat, 22 Oct 2011 00:01:07 +0000 Subject: [PATCH] don't crash when .clientcamera is set on a botclient git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11457 d7cf8633-e32d-0410-b094-e92efae38249 ::stable-branch::merge=7397cf446562edf35f00217a2ed5fbac9be38c72 --- sv_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sv_main.c b/sv_main.c index d1a73715..7a2abb9b 100644 --- a/sv_main.c +++ b/sv_main.c @@ -2484,7 +2484,7 @@ static void SV_UpdateToReliableMessages (void) clientcamera = PRVM_NUM_FOR_EDICT(host_client->edict); host_client->clientcamera = clientcamera; - if (oldclientcamera != host_client->clientcamera) + if (oldclientcamera != host_client->clientcamera && host_client->netconnection) { MSG_WriteByte(&host_client->netconnection->message, svc_setview); MSG_WriteShort(&host_client->netconnection->message, host_client->clientcamera); -- 2.39.2