remove unused variable, and added lumen cable.

This commit is contained in:
AlgorithmX2
2014-05-25 17:43:17 -05:00
parent 7b33635c47
commit fa376237fd
11 changed files with 96 additions and 8 deletions
+6 -2
View File
@@ -54,11 +54,15 @@ public class PartDenseCable extends PartCable
getHost().markForUpdate();
}
public PartDenseCable(ItemStack is) {
super( PartDenseCable.class, is );
public PartDenseCable(Class c, ItemStack is) {
super( c, is );
proxy.setFlags( GridFlags.TIER_2_CAPACITY );
}
public PartDenseCable(ItemStack is) {
this( PartDenseCable.class, is );
}
@Override
public AECableType getCableConnectionType()
{