From d7de3e61d23aed7b1afa8ca50c8ab90c2caec065 Mon Sep 17 00:00:00 2001 From: Flanks255 <32142731+Flanks255@users.noreply.github.com> Date: Tue, 4 Jun 2024 13:44:31 -0500 Subject: [PATCH] Gui Fixes --- .../mod/inventory/gui/GuiLaserRelayItemWhitelist.java | 5 ++--- .../ellpeck/actuallyadditions/mod/inventory/gui/SackGui.java | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiLaserRelayItemWhitelist.java b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiLaserRelayItemWhitelist.java index 4e575a5fa..7100373ad 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiLaserRelayItemWhitelist.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiLaserRelayItemWhitelist.java @@ -97,6 +97,8 @@ public class GuiLaserRelayItemWhitelist extends AAScreen list = new ArrayList<>(); @@ -104,9 +106,6 @@ public class GuiLaserRelayItemWhitelist extends AAScreen { text.add(Component.literal("Auto-Insert " + (this.container.autoInsert ? "On" : "Off")).withStyle(ChatFormatting.BOLD)); - text.add(Component.literal("Turn this on to make items that get picked up automatically go into the bag.")); //TODO how to word wrap these to 200? - text.add(Component.literal("Note that this WON'T work when you are holding the bag in your hand.").withStyle(ChatFormatting.GRAY).withStyle(ChatFormatting.ITALIC)); //TODO this too + text.add(Component.literal("Turn this on to make items that get picked up automatically go into the sack.")); //TODO how to word wrap these to 200? + text.add(Component.literal("Note that this WON'T work when you are holding the sack in your hand.").withStyle(ChatFormatting.GRAY).withStyle(ChatFormatting.ITALIC)); //TODO this too guiGraphics.renderTooltip(font, text, Optional.empty(), mouseX, mouseY); //TODO i have no idea what im doing here... } }