From cf862061d5db0d36074ac6cc30a35d146f3e456b Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Mon, 10 Aug 2020 16:33:52 -0400 Subject: [PATCH] mist: can only get to stoneship if ship raised --- mist/mist_puzzles.s | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/mist/mist_puzzles.s b/mist/mist_puzzles.s index ab713a24..884227b2 100644 --- a/mist/mist_puzzles.s +++ b/mist/mist_puzzles.s @@ -91,9 +91,10 @@ make_ship_up: sta location0+1,Y ; MIST_ARRIVAL_DOCK sta location30+1,Y ; MIST_VIEWER_DOOR - - ; FIXME: hook up exit on dock to ship - + ; hook up exit on dock to ship + ldy #LOCATION_SPECIAL_EXIT + lda #DIRECTION_E + sta location0,Y ; MIST_ARRIVAL_DOCK rts @@ -177,9 +178,10 @@ make_ship_down: sta location0+1,Y ; MIST_ARRIVAL_DOCK sta location30+1,Y ; MIST_VIEWER_DOOR - ; FIXME: remove exit on dock to ship - - + ; remove exit on dock to ship + ldy #LOCATION_SPECIAL_EXIT + lda #$ff + sta location0,Y ; MIST_ARRIVAL_DOCK rts