summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells1.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells1.cc')
-rw-r--r--crawl-ref/source/spells1.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index 835030f6eb..2f798cadf1 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -1576,7 +1576,7 @@ void manage_fire_shield()
mpr("Your ring of flames is guttering out.", MSGCH_WARN);
// Place fire clouds all around you
- for ( adjacent_iterator ai; ai; ++ai )
+ for ( adjacent_iterator ai(you.pos()); ai; ++ai )
if (!feat_is_solid(grd(*ai)) && env.cgrid(*ai) == EMPTY_CLOUD)
place_cloud( CLOUD_FIRE, *ai, 1 + random2(6), KC_YOU );
}