Fixed the divination sigil and did a variety of other fixes.
This commit is contained in:
parent
c2fe583496
commit
bd79afd46d
7 changed files with 16 additions and 18 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue