public ItemStack onItemRightClick (ItemStack itemstack, World world, EntityPlayer player)
{
ItemStack stack = itemstack.copy();
if (!world.isRemote)
{
DaggerEntity dagger = new DaggerEntity(stack, world, player);
if (player.capabilities.isCreativeMode)
dagger.doNotRetrieve = true;
world.spawnEntityInWorld(dagger);
}
itemstack.stackSize--;