From: Alkheemist Date: Tue, 29 Jul 2025 12:01:40 +0000 (+1000) Subject: Fix a logic error in Protectedgridsystem (#39271) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=9be68a6846f6c529e39ce0e51d6d15d107f892c1;p=space-station-14.git Fix a logic error in Protectedgridsystem (#39271) fix a logic error in Protectedgridsystem --- diff --git a/Content.Shared/Tiles/ProtectedGridSystem.cs b/Content.Shared/Tiles/ProtectedGridSystem.cs index 0d6f5b7a6d..f90b0a52de 100644 --- a/Content.Shared/Tiles/ProtectedGridSystem.cs +++ b/Content.Shared/Tiles/ProtectedGridSystem.cs @@ -62,7 +62,7 @@ public sealed class ProtectedGridSystem : EntitySystem return; } - if (SharedMapSystem.FromBitmask(args.GridIndices, data)) + if (!SharedMapSystem.FromBitmask(args.GridIndices, data)) { args.Cancelled = true; }