mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-15 00:41:57 +00:00
ca2d75307c
obviously already awake. Also, we don't want them to end up targeting themselves.) SVN r4009 (trunk)
23 lines
534 B
C++
23 lines
534 B
C++
/*
|
|
#include "actor.h"
|
|
#include "a_action.h"
|
|
#include "a_strifeglobal.h"
|
|
#include "p_enemy.h"
|
|
#include "r_defs.h"
|
|
#include "thingdef/thingdef.h"
|
|
*/
|
|
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_WakeOracleSpectre)
|
|
{
|
|
TThinkerIterator<AActor> it(NAME_AlienSpectre3);
|
|
AActor *spectre = it.Next();
|
|
|
|
if (spectre != NULL && spectre->health > 0 && self->target != spectre)
|
|
{
|
|
spectre->Sector->SoundTarget = spectre->LastHeard = self->LastHeard;
|
|
spectre->target = self->target;
|
|
spectre->SetState (spectre->SeeState);
|
|
}
|
|
}
|
|
|