diff options
| author | Raph Hennessy <raph.hennessy@gmail.com> | 2019-02-28 19:34:01 +1100 |
|---|---|---|
| committer | Daniel She <shekwancheung0528@gmail.com> | 2019-02-28 16:34:01 +0800 |
| commit | 04f96f866d09002808c2bf6ab1f252f781751617 (patch) | |
| tree | c9147b09d85660a9ea812310dbbfc25e3f2dc0cb /src/main/java/me/shedaniel/rei/api/IRecipePlugin.java | |
| parent | 60fb69c2763386cf38aea12b1fa817d51125b0db (diff) | |
| download | RoughlyEnoughItems-04f96f866d09002808c2bf6ab1f252f781751617.tar.gz RoughlyEnoughItems-04f96f866d09002808c2bf6ab1f252f781751617.tar.bz2 RoughlyEnoughItems-04f96f866d09002808c2bf6ab1f252f781751617.zip | |
Updated to 19w09a (#43)
* Update MixinContainerScreen.java
* 19w09a update
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/IRecipePlugin.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/IRecipePlugin.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/IRecipePlugin.java b/src/main/java/me/shedaniel/rei/api/IRecipePlugin.java index 16b7be3aa..2f351ea94 100644 --- a/src/main/java/me/shedaniel/rei/api/IRecipePlugin.java +++ b/src/main/java/me/shedaniel/rei/api/IRecipePlugin.java @@ -2,17 +2,17 @@ package me.shedaniel.rei.api; public interface IRecipePlugin { - default public void onFirstLoad(PluginDisabler pluginDisabler) {} + default void onFirstLoad(PluginDisabler pluginDisabler) {} - public void registerItems(ItemRegisterer itemRegisterer); + void registerItems(ItemRegisterer itemRegisterer); - public void registerPluginCategories(RecipeHelper recipeHelper); + void registerPluginCategories(RecipeHelper recipeHelper); - public void registerRecipeDisplays(RecipeHelper recipeHelper); + void registerRecipeDisplays(RecipeHelper recipeHelper); - public void registerSpeedCraft(RecipeHelper recipeHelper); + void registerSpeedCraft(RecipeHelper recipeHelper); - default public int getPriority() { + default int getPriority() { return 0; } |
