diff --git a/buildcraft_resources/assets/buildcraftfactory/textures/gui/autobench.png b/buildcraft_resources/assets/buildcraftfactory/textures/gui/autobench.png index 035449fa..4e81a0f5 100755 Binary files a/buildcraft_resources/assets/buildcraftfactory/textures/gui/autobench.png and b/buildcraft_resources/assets/buildcraftfactory/textures/gui/autobench.png differ diff --git a/buildcraft_resources/changelog/7.0.0 b/buildcraft_resources/changelog/7.0.0 index c581a591..ab71db20 100644 --- a/buildcraft_resources/changelog/7.0.0 +++ b/buildcraft_resources/changelog/7.0.0 @@ -2,10 +2,12 @@ Additions: * **New textures!** - "Essence" made by (CyanideX) * **Modularization** - BuildCraft is back to being modules (asie) * Blocks: + * Changed automatic crafting mechanics: + * Redstone Engines speed up the Auto Workbench a little bit (asie) + * The Auto Workbench now supports non-stackable items and has an internal buffer (asie) * Blueprint Library renamed to Electronic Library, supports copying books - and soon other things! (asie) * Rewritten Zone Planner map system - should have much less lag and take up less disk space! * **Note** - all existing zone planner previews will disappear. To reload them, simply break and place the zone planner! - * You can now apply RF power (or a redstone engine) to an Auto Workbench to speed it up (asie - thanks KingTriaxx!) * You can now place a Marker-using machine next to any part of the box and not just corners (asie) * Items: * Paintbrush for dyeing pipes and other supported blocks (asie) diff --git a/common/buildcraft/factory/gui/GuiAutoCrafting.java b/common/buildcraft/factory/gui/GuiAutoCrafting.java index 334b8f0d..f0af65c6 100644 --- a/common/buildcraft/factory/gui/GuiAutoCrafting.java +++ b/common/buildcraft/factory/gui/GuiAutoCrafting.java @@ -43,7 +43,7 @@ public class GuiAutoCrafting extends GuiBuildCraft { protected void drawGuiContainerForegroundLayer(int par1, int par2) { String title = StringUtils.localize("tile.autoWorkbenchBlock.name"); fontRendererObj.drawString(title, getCenteredOffset(title), 6, 0x404040); - fontRendererObj.drawString(StringUtils.localize("gui.inventory"), 8, (ySize - 127) + 2, 0x404040); + fontRendererObj.drawString(StringUtils.localize("gui.inventory"), 8, (ySize - 96) + 2, 0x404040); } @Override