I am adding material crops to my mod and when I went to go add lapis(dye, 1, 4) the "1, 4" is highlited with red and I cant figure out how to make it work with lapis. If I make it a "new ItemStack" like I would when I use it in the crafting recipes, the whole line gets highlighted red.
package ronaldi2001.MoreItems.crops;
import net.minecraft.block.BlockCrops;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import ronaldi2001.MoreItems.init.MoreItemsItems;
public class MILapisCrop extends BlockCrops {
public MILapisCrop(String name) {
this.setUnlocalizedName(name);
}
public Item getSeed() {
return MoreItemsItems.lapis_seeds;
}
public Item getCrop() {
return Items.dye, 1, 4;
}
}