Fixed thingies not being in the right creative tab

This commit is contained in:
Brian Ricketts 2013-02-27 01:29:12 -06:00
parent 43cf672769
commit 5ebdfab827

View file

@ -22,7 +22,9 @@ public abstract class BlockImprintable extends BlockALMachine
{
public BlockImprintable(String name, int id, Material material, CreativeTabs creativeTab)
{
super(name, id, material, creativeTab);
super(id, material);
this.setBlockName(name);
this.setCreativeTab(creativeTab);
}
/**