mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-22 03:41:15 +00:00
CLIENT/SERVER: Properly network that players drop-out to clientside rendering
This commit is contained in:
parent
eaabc6b3a8
commit
981cd3a5ad
2 changed files with 12 additions and 0 deletions
|
@ -560,6 +560,11 @@ noref void(float isnew) CSQC_Ent_Update =
|
|||
self.movetype = readshort();
|
||||
self.flags = readfloat();
|
||||
self.stance = readbyte();
|
||||
|
||||
if (self.movetype == MOVETYPE_TOSS)
|
||||
self.solid = SOLID_NOT;
|
||||
else
|
||||
self.solid = SOLID_SLIDEBOX;
|
||||
|
||||
setmodelindex(self, self.modelindex);
|
||||
if (self.stance == 2)
|
||||
|
|
|
@ -925,6 +925,13 @@ void() ClientDisconnect =
|
|||
setmodel(self, "models/sprites/null.spr");
|
||||
|
||||
GameRestart_ResetPerkaColas();
|
||||
|
||||
#ifdef FTE
|
||||
|
||||
// Network everything
|
||||
self.SendFlags = 1;
|
||||
|
||||
#endif // FTE
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue