diff options
-rw-r--r-- | engines/bladerunner/script/ai/lucy.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/bladerunner/script/ai/lucy.cpp b/engines/bladerunner/script/ai/lucy.cpp index 4b9cc7bde0..aebeac7322 100644 --- a/engines/bladerunner/script/ai/lucy.cpp +++ b/engines/bladerunner/script/ai/lucy.cpp @@ -785,7 +785,13 @@ bool AIScriptLucy::ReachedMovementTrackWaypoint(int waypointId) { } void AIScriptLucy::FledCombat() { - // return false; + if (Global_Variable_Query(kVariableChapter) == 5 && Actor_Query_Goal_Number(kActorLucy) == 450) { + Actor_Put_In_Set(kActorLucy, kSetFreeSlotG); + Actor_Set_At_Waypoint(kActorLucy, 39, 0); + Actor_Set_Goal_Number(kActorLucy, 599); + } + + return; //true; } void AIScriptLucy::voightKempTest() { |