diff options
author | Eugene Sandulenko | 2018-03-15 22:45:00 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2018-03-15 22:45:00 +0100 |
commit | c65a6930cbfaa19a4f6e20e1b1aa03e70f497a97 (patch) | |
tree | f85e17e656eb358f5b1c34fcd409ee964bb04208 /engines | |
parent | 2ba581cd86c8c8dd78d0c9dc19eee77cc9b02943 (diff) | |
download | scummvm-rg350-c65a6930cbfaa19a4f6e20e1b1aa03e70f497a97.tar.gz scummvm-rg350-c65a6930cbfaa19a4f6e20e1b1aa03e70f497a97.tar.bz2 scummvm-rg350-c65a6930cbfaa19a4f6e20e1b1aa03e70f497a97.zip |
BLADERUNNER: Added mssing method for Lucy
Diffstat (limited to 'engines')
-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() { |