X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=sv_user.c;h=a5645629d14f181e7f53010399a02a8473f4b0e8;hp=4ebdc9ee33b7ce53a7fb0894f43787d5ceebdcc9;hb=e61e64e24dc955e55dee4b26ffa4ea1e6fbe7701;hpb=52b39606404e83bb166408f5e5eb6ea84bf027f8 diff --git a/sv_user.c b/sv_user.c index 4ebdc9ee..a5645629 100644 --- 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; } }