Skip to content

Commit

Permalink
Fix using Vanilla's Container instead of Natura's Container.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbegt committed Jul 8, 2017
1 parent 77612d8 commit 3843a2f
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -2,6 +2,8 @@

import java.io.IOException;

import com.progwml6.natura.common.gui.common.WorkbenchContainer;

import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiButtonImage;
import net.minecraft.client.gui.inventory.GuiContainer;
Expand Down Expand Up @@ -37,7 +39,7 @@ public WorkbenchGui(InventoryPlayer playerInv, World worldIn)

public WorkbenchGui(InventoryPlayer playerInv, World worldIn, BlockPos blockPosition)
{
super(new ContainerWorkbench(playerInv, worldIn, blockPosition));
super(new WorkbenchContainer(playerInv, worldIn, blockPosition));
this.recipeBookGui = new GuiRecipeBook();
}

Expand Down

0 comments on commit 3843a2f

Please sign in to comment.