Merge pull request from al132/1.10.2-v1

Fix display slots in Fusion Reactor JEI
This commit is contained in:
Modmuss50 2016-12-22 17:35:11 +00:00 committed by GitHub
commit 74b9b03dd3

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