Thermomachines code cleaning + some QoL (#14772)

This commit is contained in:
Menshin
2023-04-23 05:05:32 +02:00
committed by GitHub
parent 4704137e91
commit fd973be10c
16 changed files with 140 additions and 66 deletions

View File

@@ -13,7 +13,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components
[ViewVariables(VVAccess.ReadWrite)]
[DataField("enabled")]
public bool Enabled = true;
public bool Enabled = false;
/// <summary>
/// Current maximum temperature, calculated from <see cref="BaseHeatCapacity"/> and the quality of matter
@@ -92,5 +92,6 @@ namespace Content.Server.Atmos.Piping.Unary.Components
/// </summary>
[DataField("machinePartTemperature", customTypeSerializer: typeof(PrototypeIdSerializer<MachinePartPrototype>))]
public string MachinePartTemperature = "Laser";
}
}