Merge b9d2991858 into c3c6a6abd9
This commit is contained in:
commit
1322fa186d
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue