* - tweak: Increased hardlight spear throw force and use delay * - fix: Hardlight spear can now hit holocarps when thrown * - add: New sprites for hardlight spear * - fix: Fix duping hardlight spears by inserting them into containers
9 lines
239 B
C#
9 lines
239 B
C#
namespace Content.Server._White.Other.ChangeThrowForceSystem;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class ChangeThrowForceComponent : Component
|
|
{
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public float ThrowForce = 10f;
|
|
}
|