blob: 14ce1500810eb4366d34054d075115c626438c62 [file] [log] [blame] [raw]
package obsidian.api;
import net.minecraft.src.*;
import net.uberkat.obsidian.common.ObsidianIngots;
public class ItemMachineUpgrade extends Item
{
public ItemMachineUpgrade(int id)
{
super(id);
setMaxStackSize(1);
setCreativeTab(ObsidianIngots.tabOBSIDIAN);
}
}