SERVER: Stop trying to precache legacy Light sprites

This commit is contained in:
Ian 2023-03-21 12:39:35 -04:00 committed by GitHub
parent 02a2db5609
commit 203efa1d3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,15 +87,15 @@ void() light_environment = // Sun cast from Sky
void() light_fluorospark = // Light with buzz ambient
{ L_Setup(); }
void() light_globe = // Light with visible globe
{ Precache_Set("progs/s_light.spr"); makestatic(self); }
{ L_Setup(); makestatic(self); }
void() light_torch_small_walltorch = // Light with visible wall torch
{ Precache_Set("progs/flame.mdl"); makestatic(self); }
{ L_Setup(); makestatic(self); }
void() light_torch_small_yellow = // Light with small flame & fire sound
{ Precache_Set("progs/flame2.mdl"); makestatic(self); }
{ L_Setup(); makestatic(self); }
void() light_torch_large_yellow = // Light with larger flame & fire sound
{ Precache_Set("progs/flame2.mdl"); self.frame = 1; makestatic(self); }
{ L_Setup(); self.frame = 1; makestatic(self); }
void() light_flame_small_white = // Light with small flame & fire sound
{ Precache_Set("progs/flame2.mdl"); makestatic(self); }
{ L_Setup(); makestatic(self); }
//
// --------------------