diff --git a/projects/common/src/main/java/dan200/computercraft/shared/peripheral/modem/wired/WiredModemFullBlockEntity.java b/projects/common/src/main/java/dan200/computercraft/shared/peripheral/modem/wired/WiredModemFullBlockEntity.java index 56cbe073b..4e4fa68fd 100644 --- a/projects/common/src/main/java/dan200/computercraft/shared/peripheral/modem/wired/WiredModemFullBlockEntity.java +++ b/projects/common/src/main/java/dan200/computercraft/shared/peripheral/modem/wired/WiredModemFullBlockEntity.java @@ -219,7 +219,7 @@ private void connectionsChanged() { if (!world.isLoaded(offset)) continue; var element = connectedElements.get((ServerLevel) getLevel(), getBlockPos(), facing); - if (element == null) return; + if (element == null) continue; node.connectTo(element.getNode()); }