mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Fix the position of the auto split button in the Powered Furnace UI
This commit is contained in:
parent
bbf42da613
commit
73f7af4dbf
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ public class GuiFurnaceDouble extends AAScreen<ContainerFurnaceDouble> {
|
||||||
super.init();
|
super.init();
|
||||||
this.energy = new EnergyDisplay(this.leftPos + 27, this.topPos + 5, this.tileFurnace.storage);
|
this.energy = new EnergyDisplay(this.leftPos + 27, this.topPos + 5, this.tileFurnace.storage);
|
||||||
this.buttonAutoSplit = Button.builder(Component.literal("S"), (button) -> PacketHandlerHelper.sendButtonPacket(this.tileFurnace, 0))
|
this.buttonAutoSplit = Button.builder(Component.literal("S"), (button) -> PacketHandlerHelper.sendButtonPacket(this.tileFurnace, 0))
|
||||||
.bounds(this.leftPos + 27, this.topPos + 5, 16, 16).build();
|
.bounds(this.getGuiLeft(), 30, 16, 16).build();
|
||||||
buttonAutoSplit.setFGColor(this.tileFurnace.isAutoSplit ? ChatFormatting.DARK_GREEN.getColor() : ChatFormatting.RED.getColor());
|
buttonAutoSplit.setFGColor(this.tileFurnace.isAutoSplit ? ChatFormatting.DARK_GREEN.getColor() : ChatFormatting.RED.getColor());
|
||||||
this.addRenderableWidget(this.buttonAutoSplit);
|
this.addRenderableWidget(this.buttonAutoSplit);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue