From f080c133494f6430dd9078c438c90f9939e01b85 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Tue, 25 Mar 2008 19:36:08 +0000 Subject: Fixed tile compile. (I was being a bit overzealous in my cleanup.) Fix 1922815: blood potion assert. Implement 1828037: prompt before entering harmful clouds And tidy up fountain handling, dried non-magic fountains may now also start flowing again. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3878 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/travel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/travel.cc') 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) -- cgit v1.2.3-54-g00ecf