
Finished adding the Alchemy Table with JEI compatability. Also added recipes for the ARC block and the Alchemy Table.
13 lines
284 B
Java
13 lines
284 B
Java
package wayoftime.bloodmagic.iface;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
/**
|
|
* An interface for items that have custom drainage behaviour when used in
|
|
* certain alchemy recipes.
|
|
*/
|
|
public interface ICustomAlchemyConsumable
|
|
{
|
|
ItemStack drainUseOnAlchemyCraft(ItemStack stack);
|
|
}
|