mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-17 17:41:23 +00:00
- don't let monsters without a See state disappear if they try to enter it.
This commit is contained in:
parent
ccacc23905
commit
90ee22b760
1 changed files with 1 additions and 1 deletions
|
@ -2049,7 +2049,7 @@ DEFINE_ACTION_FUNCTION(AActor, A_Look)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (self->target)
|
if (self->target && self->SeeState)
|
||||||
{
|
{
|
||||||
self->SetState (self->SeeState);
|
self->SetState (self->SeeState);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue