This commit is contained in:
BarryNorfolk 2026-05-10 11:43:48 +00:00 committed by GitHub
commit 1322fa186d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ public sealed partial class BlockingSystem
return;
// Delta V - Begin Fix Toggleable Shields always blocking
if (!TryComp<ItemToggleComponent>(item, out var toggleComp) || !toggleComp.Activated)
if (TryComp<ItemToggleComponent>(item, out var toggleComp) && !toggleComp.Activated)
return;
// Delta V - End