From 2e9065986994104264644fd0cbe5728500669b00 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sat, 2 May 2020 19:14:29 -0400 Subject: [PATCH] Add slower glide to flipping places with people --- code/modules/mob/living/carbon/human/emote.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 1bb1a8cf536..c1f6acdefe5 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -400,7 +400,9 @@ var/turf/newloc = G.affecting.loc if(isturf(oldloc) && isturf(newloc)) SpinAnimation(5,1) + glide_for(6) // This and the glide_for below are purely arbitrary. Pick something that looks aesthetically pleasing. forceMove(newloc) + G.glide_for(6) G.affecting.forceMove(oldloc) message = "[src] flips over [G.affecting]!" else