Fixes fishpeople swimming slow in deep water (#91132)

## About The Pull Request
Instead of having the deep water tile slow people down, they get slowed
down by the swimming status effect. Fishpeople are immune to that
slowdown.
## Why It's Good For The Game
glug
## Changelog
🆑
fix: fixed fish infused people swimming slow in deep water
/🆑
This commit is contained in:
spiders24110
2025-05-14 13:48:27 +05:00
committed by GitHub
parent 22b66bb18e
commit a045f23eef
4 changed files with 10 additions and 4 deletions
+6 -1
View File
@@ -179,10 +179,15 @@
/datum/movespeed_modifier/magic_ties
multiplicative_slowdown = 0.5
///speed bonus given by the fish tail organ when inside water.
///Speed bonus given by the fish tail organ when inside water.
/datum/movespeed_modifier/fish_on_water
blacklisted_movetypes = MOVETYPES_NOT_TOUCHING_GROUND
multiplicative_slowdown = - /turf/open/water::slowdown
///Slowdown for swimming on deep water tiles
/datum/movespeed_modifier/swimming_deep
blacklisted_movetypes = MOVETYPES_NOT_TOUCHING_GROUND
multiplicative_slowdown = 7
/datum/movespeed_modifier/tail_dragger
multiplicative_slowdown = 4