Increase pulling modified speed (#10049)

This commit is contained in:
metalgearsloth
2022-07-26 23:58:39 +10:00
committed by GitHub
parent 5ad13e0637
commit 4b34319e5c

View File

@@ -5,9 +5,9 @@
public sealed class SharedPullerComponent : Component public sealed class SharedPullerComponent : Component
{ {
// Before changing how this is updated, please see SharedPullerSystem.RefreshMovementSpeed // Before changing how this is updated, please see SharedPullerSystem.RefreshMovementSpeed
public float WalkSpeedModifier => Pulling == default ? 1.0f : 0.75f; public float WalkSpeedModifier => Pulling == default ? 1.0f : 0.9f;
public float SprintSpeedModifier => Pulling == default ? 1.0f : 0.75f; public float SprintSpeedModifier => Pulling == default ? 1.0f : 0.9f;
[ViewVariables] [ViewVariables]
public EntityUid? Pulling { get; set; } public EntityUid? Pulling { get; set; }