NSEntity: Fix a very bad bug that caused Client entities to not parse

any fields through SpawnKey.
This commit is contained in:
Marco Cawthorne 2021-10-21 00:36:15 +02:00
parent 249e4bc612
commit ac8eefc313
Signed by: eukara
GPG Key ID: C196CD8BA993248A
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,6 @@ class NSEntity:NSTrigger
#ifdef SERVER
virtual void(void) Respawn;
virtual void(entity, string, string) Input;
virtual void(string, string) SpawnKey;
#endif
#ifdef SERVER
@ -71,4 +70,5 @@ class NSEntity:NSTrigger
virtual void(vector) SetAngles;
virtual void(vector) SetOrigin;
virtual void(vector, vector) SetSize;
virtual void(string, string) SpawnKey;
};