]> 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 6dbed5017919f3a0ae727d168935d540dac9818e..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
@@ -744,7 +744,7 @@ void SV_ReadClientMessage(void)
 
                case clc_ackentities:
                        host_client->entitydatabase4->ackframenum = MSG_ReadLong();
-                       if (developer_networkentities.integer)
+                       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;