Refactor serialization copying to use source generators (#19412)
This commit is contained in:
@@ -4,7 +4,7 @@ namespace Content.Server.Atmos.Piping.Components
|
||||
/// Adds itself to a <see cref="IAtmosphereComponent"/> to be updated by.
|
||||
/// </summary>
|
||||
[RegisterComponent]
|
||||
public sealed class AtmosDeviceComponent : Component
|
||||
public sealed partial class AtmosDeviceComponent : Component
|
||||
{
|
||||
/// <summary>
|
||||
/// If true, this device must be anchored before it will receive any AtmosDeviceUpdateEvents.
|
||||
@@ -21,7 +21,7 @@ namespace Content.Server.Atmos.Piping.Components
|
||||
/// a grid atmosphere.
|
||||
/// </summary>
|
||||
[DataField("joinSystem")]
|
||||
public bool JoinSystem { get; } = false;
|
||||
public bool JoinSystem { get; private set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// If non-null, the grid that this device is part of.
|
||||
|
||||
Reference in New Issue
Block a user