Sugar cane grow

Discussion in 'Plugin Development' started by SzymonOwca, Sep 28, 2013.

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

    SzymonOwca

    Hi,

    I want to block sugar cane grow.
    I use event BlockGrowEvent but not work ;C

    Code:java
    1. @EventHandler
    2. public void onBlockGrowEvent(BlockGrowEvent e) {
    3. if (e.getBlock().getType().equals(Material.SUGAR_CANE)) {
    4. e.setCancelled(true);
    5. }
    6. }


    Can anyone help?
     
  2. Offline

    adam753

  3. Offline

    SzymonOwca

    thanks solved
     
Thread Status:
Not open for further replies.

Share This Page