mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-06-01 09:02:08 +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
|
// resend a connection request if necessary
|
||||||
if (cls.state == ca_disconnected) {
|
if (cls.state == ca_disconnected) {
|
||||||
CL_CheckForResend ();
|
CL_CheckForResend ();
|
||||||
} else
|
} else {
|
||||||
CL_SendCmd ();
|
CL_SendCmd ();
|
||||||
|
|
||||||
// Set up prediction for other players
|
// Set up prediction for other players
|
||||||
|
@ -1463,6 +1463,7 @@ Host_Frame (float time)
|
||||||
|
|
||||||
// build a refresh entity list
|
// build a refresh entity list
|
||||||
CL_EmitEntities ();
|
CL_EmitEntities ();
|
||||||
|
}
|
||||||
|
|
||||||
// update video
|
// update video
|
||||||
if (host_speeds->int_val)
|
if (host_speeds->int_val)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue