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
+5 -1
View File
@@ -44,8 +44,12 @@ public class PartCableSmart extends PartCable
getHost().markForUpdate();
}
public PartCableSmart(Class c, ItemStack is) {
super( c, is );
}
public PartCableSmart(ItemStack is) {
super( PartCableSmart.class, is );
this( PartCableSmart.class, is );
}
@Override