Server: skip SV_RunClientCommand when our clients aren't fully initialized yet.
This commit is contained in:
parent
993c2a6ebc
commit
6aa3206d2b
1 changed files with 3 additions and 0 deletions
|
@ -249,6 +249,9 @@ SV_RunClientCommand(void)
|
|||
{
|
||||
NSClient cl = (NSClient)self;
|
||||
|
||||
if (self.classname != "player" && self.classname != "spectator")
|
||||
return;
|
||||
|
||||
if (!Plugin_RunClientCommand()) {
|
||||
/* TODO */
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue