Remove redundant read-only VV from datafields (#12626)
This commit is contained in:
@@ -20,7 +20,6 @@ namespace Content.Server.Cargo.Components
|
||||
/// <summary>
|
||||
/// How much time we've accumulated until next teleport.
|
||||
/// </summary>
|
||||
[ViewVariables]
|
||||
[DataField("accumulator")]
|
||||
public float Accumulator = 0f;
|
||||
|
||||
|
||||
@@ -24,12 +24,12 @@ public sealed class StationCargoOrderDatabaseComponent : Component
|
||||
/// </summary>
|
||||
public int Index;
|
||||
|
||||
[ViewVariables, DataField("cargoShuttleProto", customTypeSerializer:typeof(PrototypeIdSerializer<CargoShuttlePrototype>))]
|
||||
[DataField("cargoShuttleProto", customTypeSerializer:typeof(PrototypeIdSerializer<CargoShuttlePrototype>))]
|
||||
public string? CargoShuttleProto = "CargoShuttle";
|
||||
|
||||
/// <summary>
|
||||
/// The cargo shuttle assigned to this station.
|
||||
/// </summary>
|
||||
[ViewVariables, DataField("shuttle")]
|
||||
[DataField("shuttle")]
|
||||
public EntityUid? Shuttle;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user