Solved Removing exp from diamond ore

Discussion in 'Plugin Development' started by HeadGam3z, Jun 3, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    HeadGam3z

    I was just messing around, trying to remove exp drop from diamond ore, and it seemed to fail; so now I'm wondering why.

    Code:java
    1. public void onEnable() {
    2. getServer().getPluginManager().registerEvents(this, this);
    3. }
    4.  
    5. @EventHandler
    6. public void onBreakOreBlock(BlockBreakEvent e) {
    7. if (e.getBlock().equals(Material.DIAMOND_ORE)) {
    8. e.setExpToDrop(0);
    9. }
    10. }


    No errors, just nothing is happening.

    Never mind, I forgot to use getType() lol.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jun 30, 2016
Thread Status:
Not open for further replies.

Share This Page