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( public void getIngredients(
@Nonnull @Nonnull
IIngredients ingredients) { IIngredients ingredients) {
ingredients.setOutputs(ItemStack.class, Arrays.asList(baseRecipe.getTopInput(), baseRecipe.getBottomInput())); ingredients.setInputs(ItemStack.class, Arrays.asList(baseRecipe.getTopInput(), baseRecipe.getBottomInput()));
ingredients.setInput(ItemStack.class, baseRecipe.getOutput()); ingredients.setOutput(ItemStack.class, baseRecipe.getOutput());
} }
@Override @Override