From cfc8b043075c09f0b03e62272f79b5f4a4388f5a Mon Sep 17 00:00:00 2001 From: Vladisvell <73733747+Vladisvell@users.noreply.github.com> Date: Sun, 10 Mar 2024 18:54:16 +0500 Subject: [PATCH] woah monke flip (#24537) --- code/modules/mob/mob_emote.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/mob/mob_emote.dm b/code/modules/mob/mob_emote.dm index 1938c2c93f08..4473f099c226 100644 --- a/code/modules/mob/mob_emote.dm +++ b/code/modules/mob/mob_emote.dm @@ -150,12 +150,10 @@ var/turf/newloc = G.affecting.loc if(isturf(oldloc) && isturf(newloc)) user.SpinAnimation(5, 1) - user.glide_for(0.6 SECONDS) // This and the glide_for below are purely arbitrary. Pick something that looks aesthetically pleasing. var/old_pass = user.pass_flags - user.pass_flags |= (PASSMOB | PASSTABLE) + user.pass_flags |= (PASSTABLE) step(user, get_dir(oldloc, newloc)) user.pass_flags = old_pass - G.glide_for(0.6 SECONDS) message = "flips over [G.affecting]!" return ..()