mirror of
https://git.code.sf.net/p/quake/game-source
synced 2025-04-05 23:40:55 +00:00
Monsters that get stuck in floors/cielings/objects after a respawn will now
instagib. The way I'm doing it is buggy according to Grievre, but on the other hand, I haven't seen any strangeness while playing. Hikaru
This commit is contained in:
parent
a86c777218
commit
cdd54a89c1
1 changed files with 4 additions and 0 deletions
|
@ -59,6 +59,10 @@
|
|||
//Flyer/Fish
|
||||
setorigin (self, self.origin);
|
||||
}
|
||||
if (!walkmove(0,0)) {
|
||||
//Die if we get stuck in a wall/object
|
||||
T_Damage (self, self, self, 50000);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue