mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 08:29:57 +01:00
Not THAT Slow - Update Movespeed Modifiers for Smooth Movement (#22127)
The /tg/-style movespeed_modifier datums were not incorporated into the original smooth movement PR. While https://github.com/Aurorastation/Aurora.3/pull/22043 restores that functionality, the original values no longer feel good now that we're on smooth movement. This PR halves ALL movespeed_modifier/slowdown datums, with the exception of species-native, as a baseline before more individual adjustments are made.
This commit is contained in:
@@ -85,9 +85,9 @@
|
||||
if(my_parcels.len <= 4)
|
||||
slowdown = 0
|
||||
else if(my_parcels.len > 4 && my_parcels.len < 11)
|
||||
slowdown = 1
|
||||
slowdown = 0.5
|
||||
else if(my_parcels.len >= 11)
|
||||
slowdown = 2
|
||||
slowdown = 1
|
||||
|
||||
/obj/structure/cart/storage/parcelcart/attack_hand(mob/user)
|
||||
if(!isliving(user))
|
||||
|
||||
Reference in New Issue
Block a user