Prev: F338 Up: Map Next: F359
F34B: Process: Jump Onto Straw
The player is asking to jump onto the straw, print "You've done that already." if the current room is The Inner Courtyard.
Process_JumpOntoStraw F34B LD A,($A7C3) Jump to Response_YouveDoneThatAlready if *CurrentRoom is equal to room 63: The Inner Courtyard.
F34E CP $63
F350 JP Z,Response_YouveDoneThatAlready
The player isn't in The Inner Courtyard, so send them there.
F353 LD A,$63 Call ChangeRoom with room 63: The Inner Courtyard.
F355 CALL ChangeRoom
F358 RET Return.
Prev: F338 Up: Map Next: F359