summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc13
1 files changed, 9 insertions, 4 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index 43966336b2..5fe91b53bd 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -1980,11 +1980,16 @@ static int _quadrant_blink(coord_def where, int pow, int, actor *)
if (!found)
return(0);
- // Leave a purple cloud.
- place_cloud(CLOUD_PURP_SMOKE, you.pos(), 1 + random2(3), KC_YOU);
+ coord_def origin = you.pos();
+ int res = move_player_to_grid(target, false, true, true);
- you.moveto(target);
- return 1;
+ if(res)
+ {
+ // Leave a purple cloud.
+ place_cloud(CLOUD_PURP_SMOKE, origin, 1 + random2(3), KC_YOU);
+ }
+
+ return res;
}
int cast_semi_controlled_blink(int pow)