diff --git a/src/resonantinduction/wire/multipart/PartWire.java b/src/resonantinduction/wire/multipart/PartWire.java index a2495400..41a72da8 100644 --- a/src/resonantinduction/wire/multipart/PartWire.java +++ b/src/resonantinduction/wire/multipart/PartWire.java @@ -98,6 +98,21 @@ public class PartWire extends PartUniversalConductor implements TSlottedPart, JN this.material = type; } + @Override + public void bind(TileMultipart t) + { + if (tile() != null) + { + this.getNetwork().getConductors().remove(tile()); + super.bind(t); + this.getNetwork().getConductors().add((IConductor) tile()); + } + else + { + super.bind(t); + } + } + @Override public boolean canConnect(ForgeDirection direction) {