mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-16 02:24:11 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user