blob: a6ddb093571c06024743f0411592fe00b312b4db [file] [log] [blame] [raw]
package com.legacy.aether.items.food;
import net.minecraft.item.ItemFood;
import com.legacy.aether.registry.creative_tabs.AetherCreativeTabs;
public class ItemAetherFood extends ItemFood
{
public ItemAetherFood(int healAmmount)
{
super(healAmmount, false);
this.setCreativeTab(AetherCreativeTabs.food);
}
public ItemAetherFood(int healAmmount, float saturationAmmount)
{
super(healAmmount, saturationAmmount, false);
this.setCreativeTab(AetherCreativeTabs.food);
}
}