Skip to content

Commit

Permalink
Fix the recipe book using the wrong workbench container, and bump ver…
Browse files Browse the repository at this point in the history
…sions.
  • Loading branch information
alexbegt committed Aug 12, 2017
1 parent 5dccbb7 commit bdacbf2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Expand Up @@ -2,14 +2,14 @@ mod_version=4.3.0

minecraft_version=1.12

forge_version=14.21.1.2397
mappings_version=snapshot_20170706
forge_version=14.21.1.2443
mappings_version=snapshot_20170812

mantle_version=1.3.+
tconstruct_version=2.7.0.+
tconstruct_version=2.7.+

jei_version=4.7.+

hwyla_version=1.8.19-B33
hwyla_version=1.8.20-B35

mcmultipart_version=2.0.0_+
Expand Up @@ -52,7 +52,7 @@ public void initGui()
{
super.initGui();
this.widthTooNarrow = this.width < 379;
this.recipeBookGui.init(this.width, this.height, this.mc, this.widthTooNarrow, this.inventorySlots, ((ContainerWorkbench) this.inventorySlots).craftMatrix);
this.recipeBookGui.init(this.width, this.height, this.mc, this.widthTooNarrow, this.inventorySlots, ((WorkbenchContainer) this.inventorySlots).craftMatrix);
this.guiLeft = this.recipeBookGui.updateScreenPosition(this.widthTooNarrow, this.width, this.xSize);
this.recipeButton = new GuiButtonImage(10, this.guiLeft + 5, this.height / 2 - 49, 20, 18, 0, 168, 19, CRAFTING_TABLE_GUI_TEXTURES);
this.buttonList.add(this.recipeButton);
Expand Down

0 comments on commit bdacbf2

Please sign in to comment.