From d8f3a5609225b0eda75196ddd2cd7ff0efeb2a61 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sun, 6 May 2012 04:18:27 +0000 Subject: [PATCH] - 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) --- src/g_strife/a_strifeitems.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_strife/a_strifeitems.cpp b/src/g_strife/a_strifeitems.cpp index 5bf6c2caa..6771080d0 100644 --- a/src/g_strife/a_strifeitems.cpp +++ b/src/g_strife/a_strifeitems.cpp @@ -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; }