Remove inaccessible code (#41209)

Remove false check
This commit is contained in:
Connor Huffine
2025-10-30 21:14:54 -04:00
committed by GitHub
parent ae2067c5be
commit c30321d886

View File

@@ -32,9 +32,6 @@ public sealed class MindShieldSystem : EntitySystem
private void OnImplantImplanted(Entity<MindShieldImplantComponent> ent, ref ImplantImplantedEvent ev)
{
if (ev.Implanted == null)
return;
EnsureComp<MindShieldComponent>(ev.Implanted);
MindShieldRemovalCheck(ev.Implanted, ev.Implant);
}