From 69c882bfecc94dbb5f05b15416bf932761bc771e Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sun, 1 Jun 2014 20:46:58 +0930 Subject: [PATCH] Fixes #4973 --- code/datums/spells/ethereal_jaunt.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/datums/spells/ethereal_jaunt.dm b/code/datums/spells/ethereal_jaunt.dm index 2ec9a723678..1b1646ffa43 100644 --- a/code/datums/spells/ethereal_jaunt.dm +++ b/code/datums/spells/ethereal_jaunt.dm @@ -17,6 +17,11 @@ /obj/effect/proc_holder/spell/targeted/ethereal_jaunt/cast(list/targets) //magnets, so mostly hardcoded for(var/mob/living/target in targets) spawn(0) + + if(target.buckled) + var/obj/structure/stool/bed/buckled_to = target.buckled. + buckled_to.unbuckle() + var/mobloc = get_turf(target.loc) var/obj/effect/dummy/spell_jaunt/holder = new /obj/effect/dummy/spell_jaunt( mobloc ) var/atom/movable/overlay/animation = new /atom/movable/overlay( mobloc )