1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-05-09 19:04:12 +00:00

Prevent computers scanning peripherals twice

This commit is contained in:
SquidDev 2020-04-29 17:37:02 +01:00
parent b7c61f9c6d
commit 5eec24676f

View File

@ -277,7 +277,7 @@ public abstract class TileComputerBase extends TileGeneric implements IComputerT
if( offset.equals( neighbour ) ) if( offset.equals( neighbour ) )
{ {
updateSideInput( computer, dir, offset ); updateSideInput( computer, dir, offset );
break; return;
} }
} }