This commit is contained in:
AlgorithmX2 2014-05-24 10:40:16 -05:00
commit 5f21711204

View file

@ -54,7 +54,7 @@ public class BlockCableBus extends AEBaseBlock
if ( noTesrTile.isInstance( te ) )
return (T) te;
if ( tesrTile.isInstance( te ) )
if ( tesrTile != null && tesrTile.isInstance( te ) )
return (T) te;
return null;