Skip to content

Commit

Permalink
Fixes disguised morph movespeed bug (tgstation#72791)
Browse files Browse the repository at this point in the history
## 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 tgstation#61693

## Changelog
:cl:
fix: Morphs now properly move faster when disguised rather than slowing
down.
/:cl:
  • Loading branch information
Potato-Masher committed Jan 23, 2023
1 parent 92e29db commit 73bc626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/movespeed/modifiers/mobs.dm
Expand Up @@ -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

0 comments on commit 73bc626

Please sign in to comment.