]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
don't crash when .clientcamera is set on a botclient
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 22 Oct 2011 00:01:07 +0000 (00:01 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 22 Oct 2011 00:01:07 +0000 (00:01 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11457 d7cf8633-e32d-0410-b094-e92efae38249

sv_main.c

index a223b7c507eb041d7fa72cd2228925a79b47e88e..406bde3e024ac075698ea1a8464e8be91d29be2c 100644 (file)
--- a/sv_main.c
+++ b/sv_main.c
@@ -2487,7 +2487,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);