Buff the Cargo Telepad Delay. (#17781)

This commit is contained in:
LankLTE
2023-07-01 12:00:33 -07:00
committed by GitHub
parent 47064ad93c
commit 1dadc70757

View File

@@ -17,13 +17,13 @@ public sealed class CargoTelepadComponent : Component
/// The base amount of time it takes to teleport from the telepad /// The base amount of time it takes to teleport from the telepad
/// </summary> /// </summary>
[DataField("baseDelay"), ViewVariables(VVAccess.ReadWrite)] [DataField("baseDelay"), ViewVariables(VVAccess.ReadWrite)]
public float BaseDelay = 45f; public float BaseDelay = 10f;
/// <summary> /// <summary>
/// The actual amount of time it takes to teleport from the telepad /// The actual amount of time it takes to teleport from the telepad
/// </summary> /// </summary>
[DataField("delay"), ViewVariables(VVAccess.ReadWrite)] [DataField("delay"), ViewVariables(VVAccess.ReadWrite)]
public float Delay = 45f; public float Delay = 10f;
/// <summary> /// <summary>
/// The machine part that affects <see cref="Delay"/> /// The machine part that affects <see cref="Delay"/>