diff --git a/src/main/java/li/cil/oc2/common/tileentity/ComputerTileEntity.java b/src/main/java/li/cil/oc2/common/tileentity/ComputerTileEntity.java index 983327d6..e6c42394 100644 --- a/src/main/java/li/cil/oc2/common/tileentity/ComputerTileEntity.java +++ b/src/main/java/li/cil/oc2/common/tileentity/ComputerTileEntity.java @@ -311,12 +311,19 @@ public final class ComputerTileEntity extends AbstractTileEntity implements ITic world.notifyNeighborsOfStateChange(getPos(), getBlockState().getBlock()); } + final AbstractDeviceBusController.BusState oldBusState = busController.getState(); busController.scan(); setBusState(busController.getState()); if (busState != AbstractDeviceBusController.BusState.READY) { return; } + if (oldBusState != AbstractDeviceBusController.BusState.READY) { + // Bus just became ready, meaning new devices may be available, meaning new + // capabilities may be available, so we need to tell our neighbors. + world.notifyNeighborsOfStateChange(getPos(), getBlockState().getBlock()); + } + switch (runState) { case STOPPED: break;