diff options
3 files changed, 3 insertions, 3 deletions
diff --git a/gradle.properties b/gradle.properties index 4983e0bc2..ebe7d45a2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ org.gradle.jvmargs=-Xmx3G -mod_version=4.10.0 +mod_version=4.10.1 supported_version=1.16.x minecraft_version=1.16.1 yarn_version=1.16.1+build.4+legacy.20w09a+build.8 diff --git a/src/main/java/me/shedaniel/rei/plugin/information/DefaultInformationCategory.java b/src/main/java/me/shedaniel/rei/plugin/information/DefaultInformationCategory.java index ecdd3587f..aa35c1343 100644 --- a/src/main/java/me/shedaniel/rei/plugin/information/DefaultInformationCategory.java +++ b/src/main/java/me/shedaniel/rei/plugin/information/DefaultInformationCategory.java @@ -115,7 +115,7 @@ public class DefaultInformationCategory implements RecipeCategory<DefaultInforma public List<Widget> setupDisplay(DefaultInformationDisplay recipeDisplay, me.shedaniel.math.Rectangle bounds) { List<Widget> widgets = Lists.newArrayList(); widgets.add(Widgets.createLabel(new Point(bounds.getCenterX(), bounds.y + 3), recipeDisplay.getName()).noShadow().color(0xFF404040, 0xFFBBBBBB)); - widgets.add(Widgets.createSlot(new Point(bounds.getCenterX() - 8, bounds.y + 15)).entries(recipeDisplay.getEntryStacks()).markInput()); + widgets.add(Widgets.createSlot(new Point(bounds.getCenterX() - 8, bounds.y + 15)).entries(recipeDisplay.getEntryStacks())); Rectangle rectangle = new Rectangle(bounds.getCenterX() - (bounds.width / 2), bounds.y + 35, bounds.width, bounds.height - 40); widgets.add(Widgets.createSlotBase(rectangle)); widgets.add(new ScrollableTextWidget(rectangle, recipeDisplay.getTexts())); diff --git a/src/main/java/me/shedaniel/rei/plugin/information/DefaultInformationDisplay.java b/src/main/java/me/shedaniel/rei/plugin/information/DefaultInformationDisplay.java index f7acd2718..5f9a6738a 100644 --- a/src/main/java/me/shedaniel/rei/plugin/information/DefaultInformationDisplay.java +++ b/src/main/java/me/shedaniel/rei/plugin/information/DefaultInformationDisplay.java @@ -64,7 +64,7 @@ public class DefaultInformationDisplay implements RecipeDisplay { @Override public List<EntryStack> getOutputEntries() { - return Collections.emptyList(); + return entryStacks; } public DefaultInformationDisplay line(Text line) { |
