More fluid stuff lot more TODO
This commit is contained in:
parent
77634fafd3
commit
1ae5a20517
12 changed files with 97 additions and 1 deletions
23
src/main/java/techreborn/items/tools/ItemFluidbucket.java
Normal file
23
src/main/java/techreborn/items/tools/ItemFluidbucket.java
Normal 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());
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue