Add VVRW to restricted range (#21779)

This commit is contained in:
metalgearsloth
2023-11-19 23:02:37 +11:00
committed by GitHub
parent c6ba1c5704
commit 424678b455

View File

@@ -9,9 +9,9 @@ namespace Content.Shared.Salvage;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] [RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class RestrictedRangeComponent : Component public sealed partial class RestrictedRangeComponent : Component
{ {
[DataField(required: true), AutoNetworkedField] [DataField(required: true), AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)]
public float Range = 78f; public float Range = 78f;
[DataField, AutoNetworkedField] [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)]
public Vector2 Origin; public Vector2 Origin;
} }