mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-04-04 17:56:59 +00:00
parent
81f85361d5
commit
d342a1f368
@ -210,7 +210,7 @@ public class BlockCable extends BlockGeneric implements IWaterLoggable
|
||||
|
||||
BlockPos offsetPos = pos.offset( facing );
|
||||
BlockState offsetState = world.getBlockState( offsetPos );
|
||||
return Block.hasSolidSide( offsetState, world, offsetPos, facing.getOpposite() );
|
||||
return hasSolidSide( offsetState, world, offsetPos, facing.getOpposite() );
|
||||
}
|
||||
|
||||
@Nullable
|
||||
|
@ -201,8 +201,7 @@ public class TileCable extends TileGeneric implements IPeripheralTile
|
||||
public void onNeighbourChange( @Nonnull BlockPos neighbour )
|
||||
{
|
||||
Direction dir = getDirection();
|
||||
if( neighbour.equals( getPos().offset( dir ) ) && hasModem()
|
||||
&& getBlockState().isValidPosition( world, pos ) )
|
||||
if( neighbour.equals( getPos().offset( dir ) ) && hasModem() && !getBlockState().isValidPosition( getWorld(), getPos() ) )
|
||||
{
|
||||
if( hasCable() )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user