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.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index 62257555b1..5d1f5167ce 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -512,13 +512,13 @@ bool conjure_flame(int pow, const coord_def& where)
}
const int cloud = env.cgrid(where);
-
+
if (cloud != EMPTY_CLOUD && env.cloud[cloud].type != CLOUD_FIRE)
{
mpr("There's already a cloud there!");
return (false);
}
-
+
// Note that self-targeting is handled by SPFLAG_NOT_SELF.
monsters *monster = monster_at(where);
if (monster)