Gas analyzer compref removal (#17992)

* Gas analyzer compref removal

* don't question it
This commit is contained in:
Nemanja
2023-07-12 15:47:45 -04:00
committed by GitHub
parent 65d069a203
commit 37e6d99e49
7 changed files with 151 additions and 164 deletions

View File

@@ -1,5 +1,5 @@
using Robust.Client.GameObjects;
using static Content.Shared.Atmos.Components.SharedGasAnalyzerComponent;
using static Content.Shared.Atmos.Components.GasAnalyzerComponent;
namespace Content.Client.Atmos.UI
{
@@ -16,7 +16,7 @@ namespace Content.Client.Atmos.UI
{
base.Open();
_window = new GasAnalyzerWindow(this);
_window = new GasAnalyzerWindow();
_window.OnClose += OnClose;
_window.OpenCentered();
}