diff options
-rw-r--r-- | scumm/script_v2.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp index 71e3cbfaf0..d65ddd987f 100644 --- a/scumm/script_v2.cpp +++ b/scumm/script_v2.cpp @@ -836,7 +836,8 @@ void Scumm_v2::o2_walkActorTo() { a = derefActorSafe(getVarOrDirectByte(0x80), "o2_walkActorTo"); x = getVarOrDirectByte(0x40); y = getVarOrDirectByte(0x20); - a->startWalkActor(x, y, -1); + a->ignoreBoxes = true; // FIXME: Disabling walkboxes + a->startWalkActor(x, y, -1); // for now, just to debug the intro } void Scumm_v2::o2_putActor() { |