Server: Make it so you can't walk around after you die.

master
Marco Cawthorne 2 years ago
parent 722a6ac5cd
commit cacc015ae0
Signed by: eukara
GPG Key ID: CE2032F0A2882A22

@ -59,8 +59,11 @@ void
TFCGameRules::PlayerDeath(NSClientPlayer pp)
{
player pl = (player)pp;
pp.think = PlayerRespawn;
pp.nextthink = time + 4.0f;
pl.SetSolid(SOLID_NOT);
pl.SetMovetype(MOVETYPE_NONE);
pl.think = PlayerRespawn;
pl.nextthink = time + 4.0f;
}
void

Loading…
Cancel
Save