mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Move booklet handler to the bottom to make people not ignore actual reconstructor and empowerer JEI handlers >_>
This commit is contained in:
parent
15f0077ed4
commit
9b3a0722d7
1 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue