summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-10-12 16:45:06 -0700
committerMatthew Cline <zelgadis@sourceforge.net>2009-10-12 16:45:06 -0700
commit8419ed9fd356777c0028bd0e89747c51460e5045 (patch)
tree49a8bc45c58fd17210403db8daa4136f0ffebea0 /crawl-ref/source
parent839d2108df9a9da609e3fb32d4147c2365225542 (diff)
downloadcrawl-ref-8419ed9fd356777c0028bd0e89747c51460e5045.tar.gz
crawl-ref-8419ed9fd356777c0028bd0e89747c51460e5045.zip
Fixed Lua compile of super_loot item spec in ziggurat_create_loot_at().
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/dat/clua/ziggurat.lua8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/dat/clua/ziggurat.lua b/crawl-ref/source/dat/clua/ziggurat.lua
index cc409a7565..74e7029b3e 100644
--- a/crawl-ref/source/dat/clua/ziggurat.lua
+++ b/crawl-ref/source/dat/clua/ziggurat.lua
@@ -499,8 +499,10 @@ local function ziggurat_create_loot_at(c)
local good_loot = dgn.item_spec("* w:7000 / " .. dgn.good_scrolls)
local super_loot = dgn.item_spec("| w:7000 / potion of experience w:200 /" ..
"potion of cure mutation w:200 /" ..
- "potion of porridge w:100 / wand of healing w:10" ..
- "wand of hasting w:10" .. dgn.good_scrolls)
+ "potion of porridge w:100 /" ..
+ "wand of healing w:10 / " ..
+ "wand of hasting w:10 / " ..
+ dgn.good_scrolls)
local loot_spots = find_free_space(nloot * 4)
@@ -864,4 +866,4 @@ local ziggurat_builders = util.keys(ziggurat_builder_map)
function ziggurat_choose_builder()
return util.random_from(ziggurat_builders)
-end \ No newline at end of file
+end