Skip to content

Commit

Permalink
Make dense ME conduit trigger rendering of dense cable
Browse files Browse the repository at this point in the history
* re #3878
  • Loading branch information
HenryLoenwind committed Dec 6, 2016
1 parent 6290b6a commit 3621b91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ public AECableType getCableConnectionType(AEPartLocation loc) {
if (cond == null || loc == AEPartLocation.INTERNAL) {
return AECableType.NONE;
} else {
return cond.isConnectedTo(loc.getFacing()) ? AECableType.SMART : AECableType.NONE;
return cond.isConnectedTo(loc.getFacing()) ? cond.isDense() ? AECableType.DENSE : AECableType.SMART : AECableType.NONE;
}
}

Expand Down

0 comments on commit 3621b91

Please sign in to comment.