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:
Timothy C. McGrath 2004-02-13 10:24:30 +00:00
parent 15c35ae121
commit cb5e8084cf

View file

@ -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);