Jump to content

Recommended Posts

Posted

onBlockHarvested: called directly before player tries to break the block.

onBlockDestroyedByPlayer: called directly after player breaks the block.

  Not be called when Block#removedByPlayer(...) returns false.

 

Also here is minecraft code related with block breaking mechanism:

    private boolean removeBlock(int p_73079_1_, int p_73079_2_, int p_73079_3_, boolean canHarvest)
    {
        Block block = this.theWorld.getBlock(p_73079_1_, p_73079_2_, p_73079_3_);
        int l = this.theWorld.getBlockMetadata(p_73079_1_, p_73079_2_, p_73079_3_);
        block.onBlockHarvested(this.theWorld, p_73079_1_, p_73079_2_, p_73079_3_, l, this.thisPlayerMP);
        boolean flag = block.removedByPlayer(theWorld, thisPlayerMP, p_73079_1_, p_73079_2_, p_73079_3_, canHarvest);

        if (flag)
        {
            block.onBlockDestroyedByPlayer(this.theWorld, p_73079_1_, p_73079_2_, p_73079_3_, l);
        }

        return flag;
    }

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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