about summary refs log tree commit diff stats
path: root/data/maps/daedalus/rooms/Outside Hedges.txtpb
blob: 9f32e26e6295a7862d179e320ee9e014ed2ed256 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3
name: "Outside Hedges"
panel_display_name: "Hedges"
panels {
  name: "GOURD (1)"
  path: "Panels/Halls/halls_11"
  clue: "gourd"
  answer: "pumpkin"
  symbols: EXAMPLE
}
panels {
  name: "GOURD (2)"
  path: "Panels/Halls/halls_12"
  clue: "gourd"
  answer: "squash"
  symbols: EXAMPLE
}
panels {
  name: "GOURD (3)"
  path: "Panels/Halls/halls_13"
  clue: "gourd"
  answer: "cucumber"
  symbols: EXAMPLE
}
panels {
  name: "GOURD (4)"
  path: "Panels/Halls/halls_14"
  clue: "gourd"
  answer: "melon"
  symbols: EXAMPLE
}
panels {
  name: "PLUM (1)"
  path: "Panels/Halls/halls_15"
  clue: "plum"
  answer: "color"
  symbols: EXAMPLE
}
panels {
  name: "PLUM (2)"
  path: "Panels/Halls/halls_18"
  clue: "plum"
  answer: "fruit"
  symbols: EXAMPLE
}
panels {
  name: "BARK"
  path: "Panels/Tower Maze/entry_1"
  clue: "bark"
  answer: "tree"
  symbols: BOXES
}
panels {
  name: "BUD"
  path: "Panels/Tower Maze/entry_2"
  clue: "bud"
  answer: "flower"
  symbols: BOXES
}
panels {
  name: "LEAF"
  path: "Panels/Tower Maze/entry_3"
  clue: "leaf"
  answer: "tree"
  symbols: BOXES
}
panels {
  name: "PETAL"
  path: "Panels/Tower Maze/entry_4"
  clue: "petal"
  answer: "flower"
  symbols: BOXES
}
paintings {
  name: "ACHES"
  path: "Components/Paintings/Group1/aches"
}
ports {
  name: "REVITALIZED"
  path: "Components/Warps/Worldports/worldport7"
}
">.alert = "Error posting comment." render "blogs/show" return end akismet_vars = %w{ HTTP_ACCEPT HTTP_ACCEPT_ENCODING } akismet_params = { type: "comment", text: @comment.body, created_at: DateTime.now, author: @comment.username, author_email: @comment.email, author_url: @comment.website, post_url: url_for(@comment.blog), post_modified_at: @comment.blog.updated_at, referrer: @comment.referrer, env: request.env.slice(*akismet_vars) } is_spam, is_blatant = Akismet.check(@comment.request_ip, @comment.user_agent, akismet_params) if is_blatant # I am lying. flash.notice = "Comment submitted successfully! It will need to be moderated before it shows up on the blog." Global.increment_filtered_comments else if is_spam @comment.status = :pending flash_message = "Comment submitted successfully! It will need to be moderated before it shows up on the blog." else @comment.status = :published flash_message = "Comment posted successfully!" end if @comment.save flash.notice = flash_message if @comment.status == :published CommentMailer.with(comment: @comment).new_comment_email.deliver_later if @comment.reply_to and @comment.reply_to.email != @comment.blog.user.email CommentMailer.with(comment: @comment).reply_comment_email.deliver_later end else CommentMailer.with(comment: @comment).new_pending_comment_email.deliver_later end else flash.alert = "Error posting comment." end end redirect_to @comment.blog end private def comment_params params.require(:comment).permit(:username, :email, :website, :body, :reply_to_id) end end