From 2c9ca2f44d3379a8e1cf04034bbfeac07b5ff609 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Aguilera=20Puerto?= Date: Tue, 11 Aug 2020 17:41:59 +0200 Subject: [PATCH] Removes AssumeAir from IGasMixtureHolder interface. --- Content.Server/Interfaces/IGasMixtureHolder.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Content.Server/Interfaces/IGasMixtureHolder.cs b/Content.Server/Interfaces/IGasMixtureHolder.cs index 12f42a214f..ad7d035f88 100644 --- a/Content.Server/Interfaces/IGasMixtureHolder.cs +++ b/Content.Server/Interfaces/IGasMixtureHolder.cs @@ -5,7 +5,5 @@ namespace Content.Server.Interfaces public interface IGasMixtureHolder { public GasMixture Air { get; set; } - - bool AssumeAir(GasMixture giver); } }