From 360a6b8b00ba19d9d10e3e880c592e5acd57f2de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlio=20C=C3=A9sar=20Ueti?= <52474532+Mirino97@users.noreply.github.com> Date: Tue, 21 Jun 2022 14:47:10 -0300 Subject: [PATCH] Fix fixgridatmos command (#9007) --- Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs index f176d352a1..585160ee47 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs @@ -61,7 +61,7 @@ public sealed partial class AtmosphereSystem foreach (var gid in args) { - if(EntityUid.TryParse(gid, out var euid)) + if(!EntityUid.TryParse(gid, out var euid)) { shell.WriteError($"Failed to parse euid '{gid}'."); return;