2016-05-02 17:45:52 +00:00
|
|
|
package WayofTime.bloodmagic.compat.jei.alchemyTable;
|
|
|
|
|
2017-08-16 04:30:48 +00:00
|
|
|
import WayofTime.bloodmagic.api.Constants;
|
2016-05-02 17:45:52 +00:00
|
|
|
import mezz.jei.api.recipe.IRecipeHandler;
|
|
|
|
import mezz.jei.api.recipe.IRecipeWrapper;
|
|
|
|
|
2017-08-16 04:30:48 +00:00
|
|
|
import javax.annotation.Nonnull;
|
|
|
|
|
|
|
|
public class AlchemyTableRecipeHandler implements IRecipeHandler<AlchemyTableRecipeJEI> {
|
2016-05-02 17:45:52 +00:00
|
|
|
@Nonnull
|
|
|
|
@Override
|
2017-08-16 04:30:48 +00:00
|
|
|
public Class<AlchemyTableRecipeJEI> getRecipeClass() {
|
2016-05-02 17:45:52 +00:00
|
|
|
return AlchemyTableRecipeJEI.class;
|
|
|
|
}
|
|
|
|
|
2016-12-12 01:28:47 +00:00
|
|
|
@Override
|
2017-08-16 04:30:48 +00:00
|
|
|
public String getRecipeCategoryUid(@Nonnull AlchemyTableRecipeJEI recipe) {
|
2016-12-12 01:28:47 +00:00
|
|
|
return Constants.Compat.JEI_CATEGORY_ALCHEMYTABLE;
|
|
|
|
}
|
|
|
|
|
2016-05-02 17:45:52 +00:00
|
|
|
@Nonnull
|
|
|
|
@Override
|
2017-08-16 04:30:48 +00:00
|
|
|
public IRecipeWrapper getRecipeWrapper(@Nonnull AlchemyTableRecipeJEI recipe) {
|
2016-05-02 17:45:52 +00:00
|
|
|
return recipe;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-08-16 04:30:48 +00:00
|
|
|
public boolean isRecipeValid(@Nonnull AlchemyTableRecipeJEI recipe) {
|
2017-01-02 09:18:02 +00:00
|
|
|
return true;
|
2016-05-02 17:45:52 +00:00
|
|
|
}
|
|
|
|
}
|