This should stomp the last of the invisible entity bugs.

This commit is contained in:
Forest Hale 2000-07-03 00:34:20 +00:00
parent 50fec20142
commit fff8ccb2c3
3 changed files with 24 additions and 14 deletions

View file

@ -359,9 +359,10 @@ entity_t *CL_NewTempEntity (void)
ent->colormap = vid.colormap;
// LordHavoc: Endy had neglected to do this as part of the QSG VERSION 2 stuff
ent->glowsize = 0;
ent->glowcolor = 254;
ent->alpha = 1;
ent->glowsize = 0;
ent->glowcolor = 254;
ent->alpha = 1;
ent->scale = 1;
ent->colormod[0] = ent->colormod[1] = ent->colormod[2] = 1;
return ent;
}