[Scummvm-git-logs] scummvm master -> a48944ad24176c1abba1538696d5c5fa4df4ce86
antoniou79
antoniou at cti.gr
Wed Jul 10 14:55:54 CEST 2019
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:
a48944ad24 BLADERUNNER: Fix bad clause condition for Rat AI
Commit: a48944ad24176c1abba1538696d5c5fa4df4ce86
https://github.com/scummvm/scummvm/commit/a48944ad24176c1abba1538696d5c5fa4df4ce86
Author: Thanasis Antoniou (a.antoniou79 at gmail.com)
Date: 2019-07-10T15:55:15+03:00
Commit Message:
BLADERUNNER: Fix bad clause condition for Rat AI
Changed paths:
engines/bladerunner/script/ai/free_slot_a.cpp
engines/bladerunner/script/ai/free_slot_b.cpp
diff --git a/engines/bladerunner/script/ai/free_slot_a.cpp b/engines/bladerunner/script/ai/free_slot_a.cpp
index 78f886e..f7c4849 100644
--- a/engines/bladerunner/script/ai/free_slot_a.cpp
+++ b/engines/bladerunner/script/ai/free_slot_a.cpp
@@ -230,11 +230,11 @@ void AIScriptFreeSlotA::OtherAgentEnteredThisScene(int otherActorId) {
void AIScriptFreeSlotA::OtherAgentExitedThisScene(int otherActorId) {
#if !BLADERUNNER_ORIGINAL_BUGS
if (otherActorId == kActorMcCoy && Actor_Query_Goal_Number(kActorFreeSlotA) == kGoalFreeSlotAGone) {
- if (Global_Variable_Query(kVariableChapter == 4)) {
+ if (Global_Variable_Query(kVariableChapter) == 4) {
Game_Flag_Reset(kFlagRatWalkingAround);
Game_Flag_Reset(kFlagUG15BridgeWillBreak);
Actor_Set_Goal_Number(kActorFreeSlotA, kGoalFreeSlotADefault);
- } else if (Global_Variable_Query(kVariableChapter == 5)) {
+ } else if (Global_Variable_Query(kVariableChapter) == 5) {
Non_Player_Actor_Combat_Mode_Off(kActorFreeSlotA);
Actor_Set_Goal_Number(kActorFreeSlotA, kGoalFreeSlotAAct5Default);
}
diff --git a/engines/bladerunner/script/ai/free_slot_b.cpp b/engines/bladerunner/script/ai/free_slot_b.cpp
index fa8d17f..f945021 100644
--- a/engines/bladerunner/script/ai/free_slot_b.cpp
+++ b/engines/bladerunner/script/ai/free_slot_b.cpp
@@ -173,9 +173,9 @@ void AIScriptFreeSlotB::OtherAgentEnteredThisScene(int otherActorId) {
void AIScriptFreeSlotB::OtherAgentExitedThisScene(int otherActorId) {
#if !BLADERUNNER_ORIGINAL_BUGS
if (otherActorId == kActorMcCoy && Actor_Query_Goal_Number(kActorFreeSlotB) == kGoalFreeSlotBGone) {
- if (Global_Variable_Query(kVariableChapter == 4)) {
+ if (Global_Variable_Query(kVariableChapter) == 4) {
Actor_Set_Goal_Number(kActorFreeSlotB, kGoalFreeSlotBAct4Default);
- } else if (Global_Variable_Query(kVariableChapter == 5)) {
+ } else if (Global_Variable_Query(kVariableChapter) == 5) {
Non_Player_Actor_Combat_Mode_Off(kActorFreeSlotB);
Actor_Set_Goal_Number(kActorFreeSlotB, kGoalFreeSlotBAct5Default);
}
More information about the Scummvm-git-logs
mailing list