From 02a12bcb029aea83c0710b3e0673c7ced1502a18 Mon Sep 17 00:00:00 2001 From: MarinaGryphon Date: Sat, 15 Jul 2017 13:54:27 -0500 Subject: [PATCH] Fixes #258 (#3040) Fixed #258, in my current testing. I don't know why I didn't do this earlier. --- code/modules/mob/animations.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/animations.dm b/code/modules/mob/animations.dm index 3e0bd00e181..d53b76fcee5 100644 --- a/code/modules/mob/animations.dm +++ b/code/modules/mob/animations.dm @@ -136,7 +136,7 @@ note dizziness decrements automatically in the mob's Life() proc. animate(pixel_y = old_y, time = quarter_period, easing = SINE_EASING | EASE_IN, loop = -1) //back /mob/proc/stop_floating() - animate(src, pixel_y = old_y, time = 5, easing = SINE_EASING | EASE_IN) //halt animation + animate(src, pixel_y = 0, time = 5, easing = SINE_EASING | EASE_IN) //halt animation //reset the pixel offsets to zero is_floating = 0