summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dat
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/dat')
-rw-r--r--crawl-ref/source/dat/clua/ziggurat.lua4
-rw-r--r--crawl-ref/source/dat/sewer.des4
2 files changed, 6 insertions, 2 deletions
diff --git a/crawl-ref/source/dat/clua/ziggurat.lua b/crawl-ref/source/dat/clua/ziggurat.lua
index 29aa01d6fc..9f313bf65d 100644
--- a/crawl-ref/source/dat/clua/ziggurat.lua
+++ b/crawl-ref/source/dat/clua/ziggurat.lua
@@ -45,6 +45,7 @@ end
function zig_depth_increment()
zig().depth = zig().depth + 1
zig().level = { }
+ dgn.set_level_type_origin("on level " .. zig().depth .. " of a ziggurat")
end
-- Returns the current depth in the ziggurat.
@@ -58,6 +59,7 @@ function ziggurat_portal(e)
return one_way_stair {
desc = "gateway to a ziggurat",
dst = "ziggurat",
+ dstorigin = "on level 1 of a ziggurat",
floor = "stone_arch",
onclimb = ziggurat_initializer
}
@@ -373,4 +375,4 @@ end
function ziggurat_choose_builder()
return util.random_from(ziggurat_builders)
-end \ No newline at end of file
+end
diff --git a/crawl-ref/source/dat/sewer.des b/crawl-ref/source/dat/sewer.des
index b6def7e5a3..82a5c0f4ae 100644
--- a/crawl-ref/source/dat/sewer.des
+++ b/crawl-ref/source/dat/sewer.des
@@ -16,7 +16,9 @@
{{
function sewer_portal(e)
e.marker([[O = lua:one_way_stair { desc = "A glowing drain",
- dst = "sewer", floor = "stone_arch" }]])
+ dst = "sewer",
+ dstorigin = "in the sewers",
+ floor = "stone_arch" }]])
e.kfeat("O = enter_portal_vault")
e.colour("O = lightgreen")
end