Add tracking of and display of boot error messages.

This commit is contained in:
Florian Nücke
2020-12-27 01:43:32 +01:00
parent 3c6e9da0e4
commit 535e9cef79
9 changed files with 214 additions and 55 deletions

View File

@@ -71,7 +71,7 @@ public final class ComputerBlock extends HorizontalBlock {
final TileEntity tileEntity = world.getTileEntity(pos);
if (tileEntity instanceof ComputerTileEntity) {
final ComputerTileEntity busCable = (ComputerTileEntity) tileEntity;
busCable.handleNeighborChanged(changedBlockPos);
busCable.handleNeighborChanged();
}
}