X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=sv_user.c;h=a65705f49b59787e2bd263fb9ddd498c57156ab4;hb=18d64ebf3c0fa60a93dea02e5f7caf1376d6dd8b;hp=83a0e86a131a8edbd050e371c2319f5bc213919c;hpb=8b0bf5eaa634a3e9a92d371c4a1127c97f8ccf86;p=xonotic%2Fdarkplaces.git diff --git a/sv_user.c b/sv_user.c index 83a0e86a..a65705f4 100644 --- a/sv_user.c +++ b/sv_user.c @@ -586,7 +586,7 @@ static void SV_ExecuteClientMoves(void) if (sv_numreadmoves < 1) return; // only start accepting input once the player is spawned - if (!host_client->spawned) + if (!host_client->begun) return; #if DEBUGMOVES Con_Printf("SV_ExecuteClientMoves: read %i moves at sv.time %f\n", sv_numreadmoves, (float)sv.time); @@ -950,7 +950,7 @@ clc_stringcmd_invalid: // if the client hasn't progressed through signons yet, // ignore any clc_ackframes we get (they're probably from the // previous level) - if (host_client->spawned && host_client->latestframenum < num) + if (host_client->begun && host_client->latestframenum < num) { int i; for (i = host_client->latestframenum + 1;i < num;i++)