Skip to content

Commit

Permalink
merge upstream 10.03.2024 (#1076)
Browse files Browse the repository at this point in the history
  • Loading branch information
Legendaxe authored Mar 10, 2024
2 parents c841702 + cfc8b04 commit da31c43
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions code/modules/mob/mob_emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..()

Expand Down

0 comments on commit da31c43

Please sign in to comment.