[MIRROR] hierophant club dash now doesnt work on blocked turfs (#6720)

* hiero dash now doesnt work on blocked turfs (#59983)

* hierophant club dash now doesnt work on blocked turfs

Co-authored-by: Fikou <piotrbryla@onet.pl>
This commit is contained in:
SkyratBot
2021-07-05 17:00:58 +02:00
committed by GitHub
parent 2caa809cee
commit 2a8360db1a
@@ -1127,7 +1127,10 @@
if(dist > HIEROPHANT_BLINK_RANGE)
to_chat(user, span_hierophant_warning("Blink destination out of range."))
return
var/turf/target_turf = get_turf(target)
if(target_turf.is_blocked_turf_ignore_climbable())
to_chat(user, span_hierophant_warning("Blink destination blocked."))
return
. = ..()
if(!current_charges)