mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-13 00:24:44 +00:00
Fix monsters not fighting back when attacked by a a parasite.
This is another corner case. Parasites have a bbox height of 24, walkmonster_start_go() hardcodes a viewheight of 25. Therefor most traces in other functions like visible() overshoot the parasite. Fix this by not overriding the monster viewheight. Analyzed and fix suggested by @BjossiAlfreds. Closes issue #440.
This commit is contained in:
parent
cd93737eb7
commit
34c27cd2c7
1 changed files with 4 additions and 1 deletions
|
@ -953,7 +953,10 @@ walkmonster_start_go(edict_t *self)
|
|||
self->yaw_speed = 20;
|
||||
}
|
||||
|
||||
self->viewheight = 25;
|
||||
if (!self->viewheight)
|
||||
{
|
||||
self->viewheight = 25;
|
||||
}
|
||||
|
||||
monster_start_go(self);
|
||||
|
||||
|
|
Loading…
Reference in a new issue