- Fixed: ARaiseAlarm::TryPickup() had never had the call to A_WakeOracleSpectre() uncommented.

(I wonder how many more places have incomplete Strife code commented out...)

SVN r3627 (trunk)
This commit is contained in:
Randy Heit 2012-05-06 04:18:27 +00:00
parent 25b9c3dcf2
commit d8f3a56092
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ IMPLEMENT_CLASS (ARaiseAlarm)
bool ARaiseAlarm::TryPickup (AActor *&toucher)
{
P_NoiseAlert (toucher, toucher);
// A_WakeOracleSpectre (dword312F4);
CALL_ACTION(A_WakeOracleSpectre, toucher);
GoAwayAndDie ();
return true;
}