summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgn-proclayouts.h
diff options
context:
space:
mode:
authorBrendan Hickey <brendan@bhickey.net>2012-10-16 21:27:28 -0700
committerBrendan Hickey <brendan@bhickey.net>2012-12-30 19:06:17 -0800
commitceaeeda02beb6381f8b589d13eff93e875139026 (patch)
tree21a3a945aab4942968a41f007347b87a62e973ec /crawl-ref/source/dgn-proclayouts.h
parent269f91c6f83d72640cd192f0ba5d78404dabfa50 (diff)
downloadcrawl-ref-ceaeeda02beb6381f8b589d13eff93e875139026.tar.gz
crawl-ref-ceaeeda02beb6381f8b589d13eff93e875139026.zip
Abyss Changes
* Fix abyss level teleports. * Remove lava (smoke is annoying) * Add giants * Change layout switching scale
Diffstat (limited to 'crawl-ref/source/dgn-proclayouts.h')
-rw-r--r--crawl-ref/source/dgn-proclayouts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/dgn-proclayouts.h b/crawl-ref/source/dgn-proclayouts.h
index 5d39f0db29..13f987101f 100644
--- a/crawl-ref/source/dgn-proclayouts.h
+++ b/crawl-ref/source/dgn-proclayouts.h
@@ -76,7 +76,7 @@ class DiamondLayout : public ProceduralLayout
class WorleyLayout : public ProceduralLayout
{
public:
- WorleyLayout(uint32_t _seed, std::vector<const ProceduralLayout*> _layouts, const float _scale = 5.0)
+ WorleyLayout(uint32_t _seed, std::vector<const ProceduralLayout*> _layouts, const float _scale = 2.0)
: seed(_seed), layouts(_layouts), scale(_scale) {}
ProceduralSample operator()(const coord_def &p, const uint32_t offset = 0) const;
private: