diff options
| author | shedaniel <daniel@shedaniel.me> | 2020-11-08 18:30:59 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2020-11-08 18:30:59 +0800 |
| commit | 6a9b8f3a6dc349783180029ae4c8d9a55ec07677 (patch) | |
| tree | 2286282ff249248e0fbb38d264d2ce9e38e49882 /RoughlyEnoughItems-default-plugin/src/main/java | |
| parent | 6099b959bc1601023ee9dfb639dff2e1bf2a48ec (diff) | |
| download | RoughlyEnoughItems-6a9b8f3a6dc349783180029ae4c8d9a55ec07677.tar.gz RoughlyEnoughItems-6a9b8f3a6dc349783180029ae4c8d9a55ec07677.tar.bz2 RoughlyEnoughItems-6a9b8f3a6dc349783180029ae4c8d9a55ec07677.zip | |
Fix red slots in furnaces & fix crash with opening config screens
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'RoughlyEnoughItems-default-plugin/src/main/java')
| -rw-r--r-- | RoughlyEnoughItems-default-plugin/src/main/java/me/shedaniel/rei/plugin/cooking/DefaultCookingCategory.java | 2 |
1 files changed, 1 insertions, 1 deletions
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<DefaultCoo @Override public void renderRedSlots(PoseStack matrices, List<Widget> 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)) { |
