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