[Scummvm-git-logs] scummvm master -> ebe98194d25915674d38cd1998e4ea4e8eaf2757
dreammaster
noreply at scummvm.org
Wed Feb 5 06:32:22 UTC 2025
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:
ebe98194d2 M4: RIDDLE: Fix actions ending in room 703 parser
Commit: ebe98194d25915674d38cd1998e4ea4e8eaf2757
https://github.com/scummvm/scummvm/commit/ebe98194d25915674d38cd1998e4ea4e8eaf2757
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2025-02-04T22:32:11-08:00
Commit Message:
M4: RIDDLE: Fix actions ending in room 703 parser
Changed paths:
engines/m4/riddle/rooms/section7/room703.cpp
diff --git a/engines/m4/riddle/rooms/section7/room703.cpp b/engines/m4/riddle/rooms/section7/room703.cpp
index 67a732c7ede..efed0482261 100644
--- a/engines/m4/riddle/rooms/section7/room703.cpp
+++ b/engines/m4/riddle/rooms/section7/room703.cpp
@@ -700,7 +700,11 @@ void Room703::parser() {
}
} else if (!gearFl && !takeFl && player_said_any("MONK #1", "MONK #2", "MONK #3", "MONK #4")) {
digi_play("com017", 1, 255, -1, -1);
+ } else {
+ return;
}
+
+ _G(player).command_ready = false;
}
void Room703::daemon() {
More information about the Scummvm-git-logs
mailing list