diff --git a/code/modules/mob/mob_emote.dm b/code/modules/mob/mob_emote.dm index f721ee8928b0..5b978c3f42b3 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 = "делает кувырок через [G.affecting]!" return ..()