[Scummvm-git-logs] scummvm master -> 76bc50aa954c7e89614b43f45b1bb9c15f495884
antoniou79
a.antoniou79 at gmail.com
Wed Mar 18 20:40:31 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
76bc50aa95 BLADERUNNER: Fix McCoy reporting twice Lucy's VK result
Commit: 76bc50aa954c7e89614b43f45b1bb9c15f495884
https://github.com/scummvm/scummvm/commit/76bc50aa954c7e89614b43f45b1bb9c15f495884
Author: Thanasis Antoniou (a.antoniou79 at gmail.com)
Date: 2020-03-18T22:13:31+02:00
Commit Message:
BLADERUNNER: Fix McCoy reporting twice Lucy's VK result
When she is Replicant
Changed paths:
engines/bladerunner/script/ai/lucy.cpp
diff --git a/engines/bladerunner/script/ai/lucy.cpp b/engines/bladerunner/script/ai/lucy.cpp
index 0b4e39f7dd..24d1196393 100644
--- a/engines/bladerunner/script/ai/lucy.cpp
+++ b/engines/bladerunner/script/ai/lucy.cpp
@@ -890,7 +890,12 @@ void AIScriptLucy::voightKampffTest() {
Player_Loses_Control();
if (Actor_Clue_Query(kActorMcCoy, kClueVKLucyReplicant)) {
+#if BLADERUNNER_ORIGINAL_BUGS
Actor_Says(kActorMcCoy, 6865, 13);
+#else
+ // don't repeat the result, just delay
+ Delay(250);
+#endif // BLADERUNNER_ORIGINAL_BUGS
Actor_Says(kActorLucy, 1140, 14);
Actor_Says(kActorMcCoy, 6865, 14);
Actor_Says(kActorLucy, 1150, 16);
More information about the Scummvm-git-logs
mailing list