Fixed gear shafts of different types stacking

This commit is contained in:
Robert Seifert 2014-02-25 17:40:13 -05:00
parent 1291d760c7
commit 15b398ac3b
2 changed files with 3 additions and 1 deletions

View file

@ -18,6 +18,7 @@ public class ItemGearShaft extends JItemMultiPart implements IHighlight
public ItemGearShaft(int id)
{
super(id);
setHasSubtypes(true);
}
@Override

View file

@ -57,7 +57,8 @@ public class ItemFluidBucket extends ItemBucket
@Override
public ItemStack onItemRightClick(ItemStack bucket, World world, EntityPlayer player)
{
{
//TODO pull fluid instance from metadata
return super.onItemRightClick(bucket, world, player);
}