mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 12:40:42 +00:00
don't bother predicting if disconnected (forward port of Dabb's work)
This commit is contained in:
parent
65e5a7a4fc
commit
1a27ded797
1 changed files with 10 additions and 9 deletions
|
@ -1449,7 +1449,7 @@ Host_Frame (float time)
|
|||
// resend a connection request if necessary
|
||||
if (cls.state == ca_disconnected) {
|
||||
CL_CheckForResend ();
|
||||
} else
|
||||
} else {
|
||||
CL_SendCmd ();
|
||||
|
||||
// Set up prediction for other players
|
||||
|
@ -1463,6 +1463,7 @@ Host_Frame (float time)
|
|||
|
||||
// build a refresh entity list
|
||||
CL_EmitEntities ();
|
||||
}
|
||||
|
||||
// update video
|
||||
if (host_speeds->int_val)
|
||||
|
|
Loading…
Reference in a new issue