Request: Rotating oreDict ingredients in JEI
Here you return List<ItemStack>
for inputs:
http://git.oitsjustjose.com/oitsjustjose/CrissCross/-/blob/master/src/main/java/com/oitsjustjose/criss_cross/jei/ScribeRecipeJEI.java
You can have JEI rotate the inputs by returning a List<List<ItemStack>>
.
The outer list is the slot, so it will be a singletonList for 1 input. The inner list is the rotating ingredients for that slot.
See an example here: https://github.com/mezz/JustEnoughItems/blob/1.8.8/src/main/java/mezz/jei/plugins/vanilla/furnace/SmeltingRecipe.java