Gas injector visuals & balance (#8963)

This commit is contained in:
Leon Friedrich
2022-06-21 14:04:55 +12:00
committed by GitHub
parent a59ceabfbe
commit 229627a934
8 changed files with 66 additions and 10 deletions

View File

@@ -35,7 +35,8 @@ namespace Content.Server.Atmos.Piping.Binary.Components
public float LowerThreshold { get; set; } = 0.01f;
[DataField("higherThreshold")]
public float HigherThreshold { get; set; } = 2 * Atmospherics.MaxOutputPressure;
public float HigherThreshold { get; set; } = DefaultHigherThreshold;
public static readonly float DefaultHigherThreshold = 2 * Atmospherics.MaxOutputPressure;
[DataField("overclockThreshold")]
public float OverclockThreshold { get; set; } = 1000;