Fixes #4089: Render cable core on straight lines of different types. (#4103)

This commit is contained in:
yueh
2019-07-23 21:12:17 +02:00
committed by GitHub
parent 92536fceb4
commit c483bd17f5
2 changed files with 6 additions and 1 deletions
@@ -493,6 +493,11 @@ class CableBuilder
this.addCoveredConnection( facing, cableColor, connectionType, cableBusAdjacent, quadsOut );
return;
}
else if( connectionType == AECableType.DENSE_COVERED )
{
this.addDenseCoveredConnection( facing, cableColor, connectionType, cableBusAdjacent, quadsOut );
return;
}
CubeBuilder cubeBuilder = new CubeBuilder( this.format, quadsOut );