Server doesn't have noTesr Tiles.

This commit is contained in:
AlgorithmX2 2014-05-24 10:29:45 -05:00
parent ea936d3b72
commit 6e1a0aabb6

View file

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