summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/travel.cc')
-rw-r--r--crawl-ref/source/travel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/travel.cc b/crawl-ref/source/travel.cc
index fe0ad46cca..0507ce4c14 100644
--- a/crawl-ref/source/travel.cc
+++ b/crawl-ref/source/travel.cc
@@ -491,7 +491,7 @@ static bool is_safe_move(int x, int y)
// We can also safely run through smoke.
const cloud_type ctype = env.cloud[ cloud ].type;
- return (!is_damaging_cloud(ctype));
+ return (!is_damaging_cloud(ctype, true));
}
static void set_pass_feature(unsigned char grid, signed char pass)