aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/script/kia_script.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/bladerunner/script/kia_script.cpp')
-rw-r--r--engines/bladerunner/script/kia_script.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/bladerunner/script/kia_script.cpp b/engines/bladerunner/script/kia_script.cpp
index a6416d24f5..10afa16b67 100644
--- a/engines/bladerunner/script/kia_script.cpp
+++ b/engines/bladerunner/script/kia_script.cpp
@@ -46,9 +46,9 @@ void KIAScript::SCRIPT_KIA_DLL_Play_Clue_Asset_Script(int notUsed, int clueId) {
KIA_Play_Actor_Dialogue(kActorOfficerLeary, 0);
break;
case kClueDoorForced1:
- if (_vm->_cutContent && _vm->_gameVars[kVariableChapter] == 1) {
- // unfortunately this line is only available in TLK1 (so only Act 1)
- // it will be silent in subsequent Acts
+ if (_vm->_cutContent || _vm->_gameVars[kVariableChapter] == 1) {
+ // keep in mind, this line in only available in Act 1 (1.TLK) unless _vm->_cutContent is selected (provided that cut content now loads all TLKs)
+ // Without cut content it will be silent in subsequent Acts
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1870);
}
break;