More fluid stuff lot more TODO

This commit is contained in:
Gig 2015-05-09 00:36:55 +01:00
parent 77634fafd3
commit 1ae5a20517
12 changed files with 97 additions and 1 deletions

View file

@ -0,0 +1,23 @@
package techreborn.items.tools;
import techreborn.lib.ModInfo;
import net.minecraft.block.Block;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.item.ItemBucket;
public class ItemFluidbucket extends ItemBucket{
public ItemFluidbucket(Block block)
{
super(block);
setUnlocalizedName("techreborn.fluidbucket");
}
@Override
public void registerIcons(IIconRegister iconRegister)
{
itemIcon = iconRegister.registerIcon(ModInfo.MOD_ID.toLowerCase() + ":"
+ getUnlocalizedName());
}
}