summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/map_knowledge.cc
diff options
context:
space:
mode:
authorRaphael Langella <raphael.langella@gmail.com>2011-03-24 22:00:42 +0100
committerRaphael Langella <raphael.langella@gmail.com>2011-03-24 22:03:22 +0100
commitdf0302c5b7f3e7d896112313390a424526fb9f13 (patch)
treecff378d6a3aacaad6c248e7aa35868d54b3afeb9 /crawl-ref/source/map_knowledge.cc
parentcd066b19115645266c2fc505fe689ec5ba756e2d (diff)
downloadcrawl-ref-df0302c5b7f3e7d896112313390a424526fb9f13.tar.gz
crawl-ref-df0302c5b7f3e7d896112313390a424526fb9f13.zip
Unerf low piety passive mapping.
I made a mistake with the scaling which made it really weak on low piety.
Diffstat (limited to 'crawl-ref/source/map_knowledge.cc')
-rw-r--r--crawl-ref/source/map_knowledge.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/map_knowledge.cc b/crawl-ref/source/map_knowledge.cc
index 120500d9c4..fcbd6bff44 100644
--- a/crawl-ref/source/map_knowledge.cc
+++ b/crawl-ref/source/map_knowledge.cc
@@ -95,7 +95,7 @@ static void _automap_from(int x, int y, int mutated)
if (mutated)
{
magic_mapping(8 * mutated,
- you.religion == GOD_ASHENZARI ? you.piety / 4 : 25,
+ you.religion == GOD_ASHENZARI ? 25 + you.piety / 8 : 25,
true, you.religion == GOD_ASHENZARI,
true, true, coord_def(x,y));
}