Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

onBlockActivate() and onItemRightClick() not working together

Featured Replies

Posted

So I have a block with an TileEntity and an Item with the method onItemRightClick().

 

The onBlockActivate() method runs before the onItemRightClick() and then never runs the onItemRightClick().

 

This is how the code looks:

@Override
    public ActionResult<ItemStack> onItemRightClick(ItemStack itemStackIn, World worldIn, EntityPlayer playerIn, EnumHand hand) {

        RayTraceResult raytraceresult = this.rayTrace(worldIn, playerIn, false);
        if (raytraceresult == null) {
            return super.onItemRightClick(itemStackIn, worldIn, playerIn, hand);
        } else if (raytraceresult.typeOfHit != RayTraceResult.Type.BLOCK) {
            return super.onItemRightClick(itemStackIn, worldIn, playerIn, hand);
        } else {
            BlockPos blockpos = raytraceresult.getBlockPos();
            TileEntity tileEntity = worldIn.getTileEntity(blockpos);
            System.out.println(blockpos.getX());
            System.out.println(blockpos.getY());
            System.out.println(blockpos.getZ());
            if(tileEntity instanceof TileEntitySunTotem){
                System.out.println("Hey");
                TileEntitySunTotem tileEntitySunTotem = (TileEntitySunTotem) tileEntity;

            }
        }


        return super.onItemRightClick(itemStackIn, worldIn, playerIn, hand);
    }

 

    public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, @Nullable ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ){
        if(!worldIn.isRemote){
            TileEntity tileEntity = worldIn.getTileEntity(pos);
            if(tileEntity instanceof TileEntitySunTotem){
                TileEntitySunTotem tileEntitySunTotem = (TileEntitySunTotem) tileEntity;
                playerIn.addChatMessage(new TextComponentString("" + tileEntitySunTotem.getSolarEnergy()));
            }
        }

        return true;
    }

 

It does work when I shift + right click with the item. But I want it to work without.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.