BlockUpdate dont work on flowers?

Discussion in 'Plugin Development' started by michidk, Feb 26, 2014.

Thread Status:
Not open for further replies.
  1. Hi,
    i want to make a flower, on top of a clay block...
    to do this, i disabled all kinds of block updates:

    Code:java
    1. @EventHandler
    2. public void onBlockPhysics(BlockPhysicsEvent e) {
    3. e.setCancelled(true);
    4. }
    5. @EventHandler
    6. public void onBlockRedstone(BlockRedstoneEvent e) {
    7. e.setNewCurrent(0);
    8. }
    9. @EventHandler
    10. public void onLeavesDecay(LeavesDecayEvent e) {
    11. e.setCancelled(true);
    12. }


    but... if i place a flower on top of dirt, and replace the dirt with worldedit, the flower breaks after 2 minutes... i dont deastroy a block near the flower, but this is the result after 2 minutes:
    [​IMG]


    have someone an idea how I get it flower there?

    Thank you
    - michidk
     
  2. Offline

    maxben34

    In minecraft you can't do that from what I'm aware of. Changing block physics, redstone and leaf decay is not going to allow you to do this.

    I think it's impossible man.
     
Thread Status:
Not open for further replies.

Share This Page