[Scummvm-git-logs] scummvm master -> b5862a67f6c27bbc06eb07c943ecdb4c777f5db0
Strangerke
noreply at scummvm.org
Sun Jul 6 22:09:36 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
b5862a67f6 M4: RIDDLE: Fix for one of the bugs related to #16086 in room 407 (Wrong setup appearing in the lab sink) + fix missing
Commit: b5862a67f6c27bbc06eb07c943ecdb4c777f5db0
https://github.com/scummvm/scummvm/commit/b5862a67f6c27bbc06eb07c943ecdb4c777f5db0
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2025-07-06T23:09:11+01:00
Commit Message:
M4: RIDDLE: Fix for one of the bugs related to #16086 in room 407 (Wrong setup appearing in the lab sink) + fix missing control disable
Changed paths:
engines/m4/riddle/rooms/section4/room407.cpp
diff --git a/engines/m4/riddle/rooms/section4/room407.cpp b/engines/m4/riddle/rooms/section4/room407.cpp
index b48771dd9f8..774478233ad 100644
--- a/engines/m4/riddle/rooms/section4/room407.cpp
+++ b/engines/m4/riddle/rooms/section4/room407.cpp
@@ -3100,7 +3100,7 @@ void Room407::gardenHoseSurgicalTube2() {
"407 TUBE AND HOSE INTO SINK", 0, 0, 0, 100, 0xe00);
hotspot_set_active("GARDEN HOSE ", true);
- if (_hoseState == 1061) {
+ if (_hoseState != 1061) {
inv_move_object("GARDEN HOSE", 407);
} else {
_faucetPipe = series_place_sprite("407 FAUCET IN SINK",
@@ -3426,6 +3426,7 @@ void Room407::faucetPipeGlassJar() {
break;
case 777:
+ player_set_commands_allowed(false);
ws_walk(_G(my_walker), 436, 331, nullptr, 70, 1);
break;
More information about the Scummvm-git-logs
mailing list