]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sv_user.c
remove the exec default.cfg call from the reset to defaults, I have no idea why it...
[xonotic/darkplaces.git] / sv_user.c
index 4ebdc9ee33b7ce53a7fb0894f43787d5ceebdcc9..a5645629d14f181e7f53010399a02a8473f4b0e8 100644 (file)
--- a/sv_user.c
+++ b/sv_user.c
@@ -66,7 +66,7 @@ void SV_SetIdealPitch (void)
 
                tr = SV_Move (top, vec3_origin, vec3_origin, bottom, MOVE_NOMONSTERS, sv_player);
                // if looking at a wall, leave ideal the way is was
-               if (tr.allsolid)
+               if (tr.startsolid)
                        return;
 
                // near a dropoff
@@ -743,7 +743,10 @@ void SV_ReadClientMessage(void)
                        break;
 
                case clc_ackentities:
-                       EntityFrame4_AckFrame(host_client->entitydatabase4, host_client->entitydatabase4->ackframenum = MSG_ReadLong());
+                       host_client->entitydatabase4->ackframenum = MSG_ReadLong();
+                       if (developer_networkentities.integer >= 1)
+                               Con_Printf("recv clc_ackentities %i\n", host_client->entitydatabase4->ackframenum);
+                       EntityFrame4_AckFrame(host_client->entitydatabase4, host_client->entitydatabase4->ackframenum);
                        break;
                }
        }