on Block Broken

Run code when a certain type of block is mined or broken.

blocks.onBlockBroken(GRASS, () => {

});

Parameters

  • block: the type of block that, when it is broken, will start some code
  • handler: this is the code to run when the type of block selected in block is mined or broken

Example

When diamond ore is mined this code makes a new block of diamond near the current player. Unlimited diamonds!

blocks.onBlockBroken(DIAMOND_ORE, () => {
    blocks.place(DIAMOND_ORE, pos(1, 0, 0));
});

See Also

||blocks:on block placed||