aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/client/RecipeHelper.java
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-01-11 21:24:53 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-01-11 21:24:53 +0800
commitc9292fa51e69e051569caa9bd6f61572ac8fdeea (patch)
tree3f8f153e29a594153207db894e2b498bd2fda905 /src/main/java/me/shedaniel/rei/client/RecipeHelper.java
parent20142b33f979ed4ec6818003447aa9221bedd675 (diff)
downloadRoughlyEnoughItems-c9292fa51e69e051569caa9bd6f61572ac8fdeea.tar.gz
RoughlyEnoughItems-c9292fa51e69e051569caa9bd6f61572ac8fdeea.tar.bz2
RoughlyEnoughItems-c9292fa51e69e051569caa9bd6f61572ac8fdeea.zip
More Recipes
Diffstat (limited to 'src/main/java/me/shedaniel/rei/client/RecipeHelper.java')
-rw-r--r--src/main/java/me/shedaniel/rei/client/RecipeHelper.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/client/RecipeHelper.java b/src/main/java/me/shedaniel/rei/client/RecipeHelper.java
index 9860ea8ed..70dad4c7c 100644
--- a/src/main/java/me/shedaniel/rei/client/RecipeHelper.java
+++ b/src/main/java/me/shedaniel/rei/client/RecipeHelper.java
@@ -122,6 +122,11 @@ public class RecipeHelper implements RecipeSync {
plugin.registerPluginCategories();
plugin.registerRecipes();
});
+ Collections.reverse(categories);
+ RoughlyEnoughItemsCore.LOGGER.info("Registered REI Categories: " + String.join(", ", categories.stream().map(category -> {return category.getCategoryName();}).collect(Collectors.toList())));
}
+ public static List<IRecipeCategory> getCategories() {
+ return categories;
+ }
}