mirror of
https://git.code.sf.net/p/quake/game-source
synced 2025-04-04 23:10:54 +00:00
Make monsters spawn half the time precisely where they died. I plan on making
it eventually do more than just this for the half of the time when they respawn where they died. Hikaru
This commit is contained in:
parent
15c35ae121
commit
cb5e8084cf
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ void () im_alive = [ 0, (self.th_run), 0.2 ]
|
|||
self.movetype = MOVETYPE_STEP;
|
||||
self.takedamage = DAMAGE_AIM;
|
||||
|
||||
if (mapname != "end")
|
||||
if ((mapname != "end") && (random() < 0.5))
|
||||
self.origin = self.oldorigin;
|
||||
|
||||
setmodel(self, self.weaponmodel);
|
||||
|
|
Loading…
Reference in a new issue