World Anchor

Discussion in 'Archived: Plugin Requests' started by LemonLimes4ever, Feb 9, 2014.

  1. Offline

    LemonLimes4ever

    Plugin category: mechanics

    Suggested name: WorldAnchor

    What I want: If you place down a sponge it will automatically update that world. As if a player was standing in that world. For example: If I place down some sugar cane and then I leave and go to a different world (using multiworld or something) the sugar cane won't grow. But If I place down a sponge in the world with the sugarcane then it will grow even when no players are in that world.

    Ideas for commands: No commands needed.

    Ideas for permissions: No permissions needed.

    When I'd like it by: as soon as possible. :)
     
  2. Offline

    Mysticate

    LemonLimes4ever Don't think this is possible... correct me if i'm wrong.
     
  3. Offline

    highz

    Mysticate
    Isn't it possible by cancelling the unload effect (and loading it on startup)
    Code:java
    1. @EventHandler
    2. public void onUnload(ChunkUnloadEvent event) {
    3. // If there is a sponge in the chunk
    4. event.setCancelled(true);
    5. }
     
    timtower likes this.
  4. Offline

    timtower Administrator Administrator Moderator

  5. Offline

    LemonLimes4ever

    timtower likes this.

Share This Page