diff options
Diffstat (limited to 'engines/bladerunner/script')
-rw-r--r-- | engines/bladerunner/script/ai/steele.cpp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/engines/bladerunner/script/ai/steele.cpp b/engines/bladerunner/script/ai/steele.cpp index d6fdf22d4b..b10ca1f002 100644 --- a/engines/bladerunner/script/ai/steele.cpp +++ b/engines/bladerunner/script/ai/steele.cpp @@ -512,28 +512,42 @@ int AIScriptSteele::GetFriendlinessModifierIfGetsClue(int otherActorId, int clue switch (clueId) { case kClueMcCoyRecoveredHoldensBadge: + // fall through case kClueMcCoyRetiredLucy: + // fall through case kClueMcCoyRetiredDektora: + // fall through case kClueMcCoyRetiredSadik: + // fall through case kClueMcCoyShotZubenInTheBack: + // fall through case kClueMcCoyRetiredLutherLance: + // fall through case kClueClovisOrdersMcCoysDeath: + // fall through case kClueMcCoyIsKind: + // fall through case kClueMcCoyIsInsane: return 5; case kClueMcCoyKilledRunciter1: + // fall through case kClueMcCoyShotGuzza: + // fall through case kClueMcCoyKilledRunciter2: - return 0; + return 0; // TODO shouldn't this be a negative number? case kClueMcCoyLetZubenEscape: return -4; case kClueMcCoyWarnedIzo: + // fall through case kClueMcCoyHelpedIzoIzoIsAReplicant: + // fall through case kClueMcCoyHelpedDektora: + // fall through case kClueMcCoyHelpedLucy: + // fall through case kClueMcCoyHelpedGordo: return -5; |