fix the "zillion torches in the center of the world" bug

This commit is contained in:
Bill Currie 2007-04-10 10:09:23 +00:00
parent 0909b381cf
commit f09d445a3c
1 changed files with 3 additions and 3 deletions

View File

@ -9,6 +9,9 @@
void() util_map_entity_init = {
self.deadflag = DEAD_NONLIVING;
setsize (self, self.mins, self.maxs);
setorigin (self, self.origin); // Links BSP models
if (self.noise && sv_spawning) {
if (!self.volume)
self.volume = 0.5;
@ -44,9 +47,6 @@ void() util_map_entity_init = {
precache_model (self.model);
setmodel (self, self.model);
}
setsize (self, self.mins, self.maxs);
setorigin (self, self.origin); // Links BSP models
};
void() util_map_entity_cull = {