mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 13:01:47 +00:00
- Sync A_LookEx with A_Look, with regards to COMPATF_SOUNDTARGET.
SVN r4036 (trunk)
This commit is contained in:
parent
7291a56335
commit
11862ac06b
1 changed files with 2 additions and 1 deletions
|
@ -1868,7 +1868,8 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_LookEx)
|
||||||
{
|
{
|
||||||
if (!(flags & LOF_NOSOUNDCHECK))
|
if (!(flags & LOF_NOSOUNDCHECK))
|
||||||
{
|
{
|
||||||
targ = (self->flags & MF_NOSECTOR)? self->Sector->SoundTarget : self->LastHeard;
|
targ = (i_compatflags & COMPATF_SOUNDTARGET || self->flags & MF_NOSECTOR)?
|
||||||
|
self->Sector->SoundTarget : self->LastHeard;
|
||||||
if (targ != NULL)
|
if (targ != NULL)
|
||||||
{
|
{
|
||||||
// [RH] If the soundtarget is dead, don't chase it
|
// [RH] If the soundtarget is dead, don't chase it
|
||||||
|
|
Loading…
Reference in a new issue