Revert "Update submodule (again)" (#7730)

This commit is contained in:
metalgearsloth
2022-04-24 02:26:00 +10:00
committed by GitHub
parent 7feea724fd
commit ecaad9c349
36 changed files with 151 additions and 292 deletions

View File

@@ -18,7 +18,7 @@ namespace Content.Server.Atmos
/// </summary>
[Serializable]
[DataDefinition]
public sealed class GasMixture : IEquatable<GasMixture>, ISerializationHooks
public sealed class GasMixture : IEquatable<GasMixture>, ICloneable, ISerializationHooks
{
public static GasMixture SpaceGas => new() {Volume = Atmospherics.CellVolume, Temperature = Atmospherics.TCMB, Immutable = true};
@@ -296,7 +296,7 @@ namespace Content.Server.Atmos
return hashCode.ToHashCode();
}
public GasMixture Clone()
public object Clone()
{
var newMixture = new GasMixture()
{