From 73bc62616fef9063028ef5446d9916732bafbe04 Mon Sep 17 00:00:00 2001 From: PotatoMasher <33107541+Potato-Masher@users.noreply.github.com> Date: Mon, 23 Jan 2023 05:37:11 -0500 Subject: [PATCH] Fixes disguised morph movespeed bug (#72791) ## About The Pull Request Morph is described as this in the antag panel: "While morphed, you move faster, but are unable to attack creatures or eat anything." This is how it has worked as long as I have played, but at somepoint in the past this was broken. I was able to track down the source of this issue easier with admin powers, finally back to squash my own bug report. ## Why It's Good For The Game Fixes #61693 ## Changelog :cl: fix: Morphs now properly move faster when disguised rather than slowing down. /:cl: --- code/modules/movespeed/modifiers/mobs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/movespeed/modifiers/mobs.dm b/code/modules/movespeed/modifiers/mobs.dm index b7b18424cd00e3..03e51a533d5965 100644 --- a/code/modules/movespeed/modifiers/mobs.dm +++ b/code/modules/movespeed/modifiers/mobs.dm @@ -127,7 +127,7 @@ multiplicative_slowdown = 5 /datum/movespeed_modifier/morph_disguised - multiplicative_slowdown = 1 + multiplicative_slowdown = -1 /datum/movespeed_modifier/auto_wash multiplicative_slowdown = 3