summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-24 05:42:19 +0000
committerdploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-24 05:42:19 +0000
commit4edb53f104d6ead8e8aa14de93767ebf35ac7ce1 (patch)
tree0f20efbfa07cacda4f7cc0f16364df9f7de4dedd /crawl-ref/source
parent6855ac274ae6c731f33ab1e0f146f9283c75990f (diff)
downloadcrawl-ref-4edb53f104d6ead8e8aa14de93767ebf35ac7ce1.tar.gz
crawl-ref-4edb53f104d6ead8e8aa14de93767ebf35ac7ce1.zip
Reinstate old formula for difficulty per ziggurat depth.
Needs tweaking. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8717 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/dat/clua/ziggurat.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/dat/clua/ziggurat.lua b/crawl-ref/source/dat/clua/ziggurat.lua
index 9e84287b07..f1aa3dc319 100644
--- a/crawl-ref/source/dat/clua/ziggurat.lua
+++ b/crawl-ref/source/dat/clua/ziggurat.lua
@@ -340,7 +340,7 @@ local dgn_passable = dgn.passable_excluding("closed_door")
local function ziggurat_create_monsters(p, mfn)
local depth = zig_depth()
- local hd_pool = depth * (depth + 8) + depth*depth*depth
+ local hd_pool = depth * (depth + 8)
-- (was depth * (depth + 8) before and too easy)
local nth = 1