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
@@ -5,8 +5,12 @@ import net.minecraft.item.ItemStack;
public class PartCableGlass extends PartCable
{
public PartCableGlass(Class c, ItemStack is) {
super( c, is );
}
public PartCableGlass(ItemStack is) {
super( PartCableGlass.class, is );
this( PartCableGlass.class, is );
}
}