From c19aeae6ae51ca9019f8051f83ab7eb52f4a1608 Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Thu, 30 Apr 2015 01:25:36 +0100 Subject: - Hand Pedestals no longer close the palm when you put something in - Fixed the ritual crashing - Fixed the Liquids Tab from crashing --- src/main/java/darkknight/jewelrycraft/block/BlockHandPedestal.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/main/java/darkknight/jewelrycraft/block/BlockHandPedestal.java') diff --git a/src/main/java/darkknight/jewelrycraft/block/BlockHandPedestal.java b/src/main/java/darkknight/jewelrycraft/block/BlockHandPedestal.java index 6fe5b7f..f88048e 100644 --- a/src/main/java/darkknight/jewelrycraft/block/BlockHandPedestal.java +++ b/src/main/java/darkknight/jewelrycraft/block/BlockHandPedestal.java @@ -98,12 +98,10 @@ public class BlockHandPedestal extends BlockContainer if (te != null){ if (!world.isRemote && te.getHeldItemStack() == null && item != null){ te.setHeldItemStack(item.copy()); - te.closeHand(); if (!entityPlayer.capabilities.isCreativeMode) item.stackSize--; te.markDirty(); }else if (entityPlayer.isSneaking()) if (entityPlayer.inventory.addItemStackToInventory(te.getHeldItemStack())){ te.removeHeldItemStack(); - te.openHand(); } te.markDirty(); } -- cgit v1.2.3