From 6a9b8f3a6dc349783180029ae4c8d9a55ec07677 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Sun, 8 Nov 2020 18:30:59 +0800 Subject: Fix red slots in furnaces & fix crash with opening config screens Signed-off-by: shedaniel --- .../java/me/shedaniel/rei/plugin/cooking/DefaultCookingCategory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'RoughlyEnoughItems-default-plugin/src') diff --git a/RoughlyEnoughItems-default-plugin/src/main/java/me/shedaniel/rei/plugin/cooking/DefaultCookingCategory.java b/RoughlyEnoughItems-default-plugin/src/main/java/me/shedaniel/rei/plugin/cooking/DefaultCookingCategory.java index 048a592c7..4f99396f6 100644 --- a/RoughlyEnoughItems-default-plugin/src/main/java/me/shedaniel/rei/plugin/cooking/DefaultCookingCategory.java +++ b/RoughlyEnoughItems-default-plugin/src/main/java/me/shedaniel/rei/plugin/cooking/DefaultCookingCategory.java @@ -57,7 +57,7 @@ public class DefaultCookingCategory implements TransferRecipeCategory widgets, Rectangle bounds, DefaultCookingDisplay display, IntList redSlots) { - Point startPoint = new Point(bounds.getCenterX() - 41, bounds.getCenterY() - 27); + Point startPoint = new Point(bounds.getCenterX() - 41, bounds.y + 10); matrices.pushPose(); matrices.translate(0, 0, 400); if (redSlots.contains(0)) { -- cgit