diff --git a/src/main/java/gregtech/api/gui/GuiTextures.java b/src/main/java/gregtech/api/gui/GuiTextures.java index 02a8400adfd..69690446eee 100644 --- a/src/main/java/gregtech/api/gui/GuiTextures.java +++ b/src/main/java/gregtech/api/gui/GuiTextures.java @@ -44,7 +44,8 @@ public class GuiTextures { public static final TextureArea BUTTON_FLUID_OUTPUT = TextureArea.fullImage("textures/gui/widget/button_fluid_output_overlay.png"); public static final TextureArea BUTTON_ITEM_OUTPUT = TextureArea.fullImage("textures/gui/widget/button_item_output_overlay.png"); public static final TextureArea BUTTON_LOCK = TextureArea.fullImage("textures/gui/widget/button_lock.png"); - public static final TextureArea BUTTON_VOID = TextureArea.fullImage("textures/gui/widget/button_void.png"); + public static final TextureArea BUTTON_FLUID_VOID = TextureArea.fullImage("textures/gui/widget/button_fluid_void.png"); + public static final TextureArea BUTTON_ITEM_VOID = TextureArea.fullImage("textures/gui/widget/button_item_void.png"); public static final TextureArea BUTTON_VOID_NONE = TextureArea.fullImage("textures/gui/widget/button_void_none.png"); public static final TextureArea BUTTON_VOID_MULTIBLOCK = TextureArea.fullImage("textures/gui/widget/button_void_multiblock.png"); public static final TextureArea BUTTON_LEFT = TextureArea.fullImage("textures/gui/widget/left.png"); diff --git a/src/main/java/gregtech/common/metatileentities/storage/MetaTileEntityQuantumChest.java b/src/main/java/gregtech/common/metatileentities/storage/MetaTileEntityQuantumChest.java index ae001bf538d..71f07c4020e 100644 --- a/src/main/java/gregtech/common/metatileentities/storage/MetaTileEntityQuantumChest.java +++ b/src/main/java/gregtech/common/metatileentities/storage/MetaTileEntityQuantumChest.java @@ -350,7 +350,7 @@ protected ModularUI createUI(EntityPlayer entityPlayer) { GuiTextures.BUTTON_ITEM_OUTPUT, this::isAutoOutputItems, this::setAutoOutputItems).shouldUseBaseBackground() .setTooltipText("gregtech.gui.item_auto_output.tooltip")) .widget(new ToggleButtonWidget(25, 64, 18, 18, - GuiTextures.BUTTON_VOID, this::isVoiding, this::setVoiding) + GuiTextures.BUTTON_ITEM_VOID, this::isVoiding, this::setVoiding) .setTooltipText("gregtech.gui.item_voiding.tooltip") .shouldUseBaseBackground()) .bindPlayerInventory(entityPlayer.inventory); diff --git a/src/main/java/gregtech/common/metatileentities/storage/MetaTileEntityQuantumTank.java b/src/main/java/gregtech/common/metatileentities/storage/MetaTileEntityQuantumTank.java index 6b4319b3754..3ba1a35433c 100644 --- a/src/main/java/gregtech/common/metatileentities/storage/MetaTileEntityQuantumTank.java +++ b/src/main/java/gregtech/common/metatileentities/storage/MetaTileEntityQuantumTank.java @@ -329,7 +329,7 @@ protected ModularUI createUI(EntityPlayer entityPlayer) { .setTooltipText("gregtech.gui.fluid_lock.tooltip") .shouldUseBaseBackground()) .widget(new ToggleButtonWidget(43, 64, 18, 18, - GuiTextures.BUTTON_VOID, this::isVoiding, this::setVoiding) + GuiTextures.BUTTON_FLUID_VOID, this::isVoiding, this::setVoiding) .setTooltipText("gregtech.gui.fluid_voiding.tooltip") .shouldUseBaseBackground()); if (isConnected()) { diff --git a/src/main/resources/assets/gregtech/textures/gui/widget/button_void.png b/src/main/resources/assets/gregtech/textures/gui/widget/button_fluid_void.png similarity index 100% rename from src/main/resources/assets/gregtech/textures/gui/widget/button_void.png rename to src/main/resources/assets/gregtech/textures/gui/widget/button_fluid_void.png diff --git a/src/main/resources/assets/gregtech/textures/gui/widget/button_item_void.png b/src/main/resources/assets/gregtech/textures/gui/widget/button_item_void.png new file mode 100644 index 00000000000..d7b1ddb860e Binary files /dev/null and b/src/main/resources/assets/gregtech/textures/gui/widget/button_item_void.png differ