mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
initialize the projectiles array so nails are visible
This commit is contained in:
parent
b5162177b2
commit
0652a9d90c
1 changed files with 4 additions and 0 deletions
|
@ -1044,4 +1044,8 @@ CL_EmitEntities (void)
|
|||
void
|
||||
CL_Ents_Init (void)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < MAX_PROJECTILES; i++)
|
||||
CL_Init_Entity (&cl_projectiles[i]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue