summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2009-11-04 13:33:52 -0800
committerStefan O'Rear <stefanor@cox.net>2009-11-04 13:33:52 -0800
commitce5c888daccae3cf40be8e28176f415e54b26650 (patch)
tree81172d814a9462d0e987d73a1d59a7bf42a2c852 /crawl-ref/source
parentcb651452370f4ce881a2bd45c35eca4404fedff5 (diff)
downloadcrawl-ref-ce5c888daccae3cf40be8e28176f415e54b26650.tar.gz
crawl-ref-ce5c888daccae3cf40be8e28176f415e54b26650.zip
Buff passive mapping, esp. at low levels.
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index e499245913..2a64183fda 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -267,7 +267,7 @@ void set_terrain_mapped( int x, int y )
static void _automap_from( int x, int y, int mutated )
{
if (mutated)
- magic_mapping(8 * mutated, 5 * mutated, true, false,
+ magic_mapping(8 * mutated, 25, true, false,
true, true, coord_def(x,y));
}