Fix display slots in Fusion Reactor JEI

This commit is contained in:
al132 2016-12-22 11:29:07 -06:00 committed by GitHub
parent 7a6b3b6b48
commit 8306ebc72c

View file

@ -23,8 +23,8 @@ public class FusionReactorRecipeWrapper extends BlankRecipeWrapper {
public void getIngredients(
@Nonnull
IIngredients ingredients) {
ingredients.setOutputs(ItemStack.class, Arrays.asList(baseRecipe.getTopInput(), baseRecipe.getBottomInput()));
ingredients.setInput(ItemStack.class, baseRecipe.getOutput());
ingredients.setInputs(ItemStack.class, Arrays.asList(baseRecipe.getTopInput(), baseRecipe.getBottomInput()));
ingredients.setOutput(ItemStack.class, baseRecipe.getOutput());
}
@Override