mirror of
https://git.code.sf.net/p/quake/game-source
synced 2025-02-16 08:52:16 +00:00
fix the "zillion torches in the center of the world" bug
This commit is contained in:
parent
0909b381cf
commit
f09d445a3c
1 changed files with 3 additions and 3 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue