Fixed crashing bug when MCMultiPart is not installed, fixes #1587
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
# Refined Storage Changelog
|
||||
|
||||
### 1.5.30
|
||||
- Fixed crashing bug when MCMultiPart is not installed (raoulvdberge)
|
||||
|
||||
### 1.5.29
|
||||
- Update Forge to 2577 (minimum Forge version required is now 2555 for MC 1.12.2) (raoulvdberge)
|
||||
- Fixed bug where MCMP multiparts were blocking RS network connections (raoulvdberge)
|
||||
|
||||
@@ -106,7 +106,7 @@ public class BlockCable extends BlockNode {
|
||||
return false;
|
||||
}
|
||||
|
||||
TileEntity otherTile = RSMCMPAddon.unwrapTile(world, pos.offset(direction));
|
||||
TileEntity otherTile = world.getTileEntity(pos.offset(direction));
|
||||
EnumFacing otherTileSide = direction.getOpposite();
|
||||
|
||||
if (otherTile != null && otherTile.hasCapability(CapabilityNetworkNodeProxy.NETWORK_NODE_PROXY_CAPABILITY, otherTileSide)) {
|
||||
|
||||
Reference in New Issue
Block a user