Fixed the divination sigil and did a variety of other fixes.

This commit is contained in:
WayofTime 2016-03-28 07:25:51 -04:00
parent c2fe583496
commit bd79afd46d
7 changed files with 16 additions and 18 deletions

View file

@ -24,8 +24,10 @@ public class ItemBindable extends Item implements IBindable
}
@Override
public ActionResult<ItemStack> onItemRightClick(ItemStack itemStackIn, World worldIn, EntityPlayer playerIn, EnumHand hand) {
DinnerBeforeDessert.bindMe(worldIn, playerIn, itemStackIn);
public ActionResult<ItemStack> onItemRightClick(ItemStack itemStackIn, World worldIn, EntityPlayer playerIn, EnumHand hand)
{
if (!worldIn.isRemote)
DinnerBeforeDessert.bindMe(worldIn, playerIn, itemStackIn);
return super.onItemRightClick(itemStackIn, worldIn, playerIn, hand);
}