Fix a logic error in Protectedgridsystem (#39271)

fix a logic error in Protectedgridsystem
This commit is contained in:
Alkheemist
2025-07-29 22:01:40 +10:00
committed by GitHub
parent 990940071b
commit 9be68a6846

View File

@@ -62,7 +62,7 @@ public sealed class ProtectedGridSystem : EntitySystem
return; return;
} }
if (SharedMapSystem.FromBitmask(args.GridIndices, data)) if (!SharedMapSystem.FromBitmask(args.GridIndices, data))
{ {
args.Cancelled = true; args.Cancelled = true;
} }