BloodMagic/src/main/java/WayofTime/bloodmagic/item/ItemBucketEssence.java
Nick 6c729db70c Initial 1.9 commit
This DOES NOT BUILD. Do not even attempt.

Almost everything has been ported besides the block/item packages. Then it's a matter of testing what broke.
2016-03-17 13:00:46 -07:00

20 lines
617 B
Java

package WayofTime.bloodmagic.item;
import WayofTime.bloodmagic.BloodMagic;
import WayofTime.bloodmagic.api.Constants;
import WayofTime.bloodmagic.registry.ModBlocks;
import net.minecraft.init.Items;
import net.minecraft.item.ItemBucket;
public class ItemBucketEssence extends ItemBucket
{
public ItemBucketEssence()
{
super(ModBlocks.lifeEssence);
setUnlocalizedName(Constants.Mod.MODID + ".bucket.lifeEssence");
setRegistryName(Constants.BloodMagicItem.BUCKET_ESSENCE.getRegName());
setContainerItem(Items.bucket);
setCreativeTab(BloodMagic.tabBloodMagic);
}
}