Move booklet handler to the bottom to make people not ignore actual reconstructor and empowerer JEI handlers >_>

This commit is contained in:
Ellpeck 2016-08-31 20:48:30 +02:00
parent 15f0077ed4
commit 9b3a0722d7

View file

@ -42,19 +42,19 @@ public class JEIActuallyAdditionsPlugin implements IModPlugin{
IJeiHelpers helpers = registry.getJeiHelpers();
registry.addRecipeCategories(
new BookletRecipeCategory(helpers.getGuiHelper()),
new CoffeeMachineRecipeCategory(helpers.getGuiHelper()),
new CrusherRecipeCategory(helpers.getGuiHelper()),
new ReconstructorRecipeCategory(helpers.getGuiHelper()),
new EmpowererRecipeCategory(helpers.getGuiHelper())
new EmpowererRecipeCategory(helpers.getGuiHelper()),
new BookletRecipeCategory(helpers.getGuiHelper())
);
registry.addRecipeHandlers(
new BookletRecipeHandler(),
new CoffeeMachineRecipeHandler(),
new CrusherRecipeHandler(),
new ReconstructorRecipeHandler(),
new EmpowererRecipeHandler()
new EmpowererRecipeHandler(),
new BookletRecipeHandler()
);
registry.addRecipes(ActuallyAdditionsAPI.BOOKLET_PAGES_WITH_ITEM_DATA);