From 33b428880e1c1f0b7cb0dca6e86a50a1fc288282 Mon Sep 17 00:00:00 2001 From: Christine Lemmer-Webber Date: Wed, 21 Sep 2022 13:19:37 -0400 Subject: [PATCH] Correct order again :P --- worlds/bricabrac.scm | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/worlds/bricabrac.scm b/worlds/bricabrac.scm index 6c96a5a..1d99181 100644 --- a/worlds/bricabrac.scm +++ b/worlds/bricabrac.scm @@ -2374,25 +2374,6 @@ it.")) (make #:name "south" #:to 'courtyard))) - ('vaulted-tunnel - #f - #:name "A Vaulted Tunnel of Trees" - #:desc - '((p "You step into the entrance to see two rows of trees with intersecting branches, forming a vaulted tunnel. The fairy lights cast a soft glow on the space. On each tree trunk is a portrait and the eerie laughter you heard outside echoes louder as you pass each portrait. ")) - #:exits - (list (make - #:name "north" - #:to 'forest-clearing) - (make - #:name "south" - #:to 'wedding-entrance))) - ('vaulted-tunnel:portrait - 'vaulted-tunnel - #:name "hanging portraits" - #:desc - "Each portrait shows a hazy image of a fairy in various modes of dress from Victorian to today's current fashions. The style and format of the photographs all look the same." - #:goes-by - '("hanging portrait" "hanging portraits" "portrait" "portraits")) ('wedding-entrance #f #:name "Entrance to the Wedding" @@ -2408,7 +2389,26 @@ frog sitting atop a hostess podium.")) #:exits (list (make #:name "south" - #:to 'courtyard))))) + #:to 'forest-clearing) + (make + #:name "north" + #:to 'vaulted-tunnel))) + ('vaulted-tunnel + #f + #:name "A Vaulted Tunnel of Trees" + #:desc + '((p "You step into the entrance to see two rows of trees with intersecting branches, forming a vaulted tunnel. The fairy lights cast a soft glow on the space. On each tree trunk is a portrait and the eerie laughter you heard outside echoes louder as you pass each portrait. ")) + #:exits + (list (make + #:name "south" + #:to 'wedding-entrance))) + ('vaulted-tunnel:portrait + 'vaulted-tunnel + #:name "hanging portraits" + #:desc + "Each portrait shows a hazy image of a fairy in various modes of dress from Victorian to today's current fashions. The style and format of the photographs all look the same." + #:goes-by + '("hanging portrait" "hanging portraits" "portrait" "portraits")))) -- 2.31.1