Package org.bukkit.event.world

Examples of org.bukkit.event.world.ChunkPopulateEvent


        for (BlockPopulator p : world.getPopulators()) {
            p.populate(world, random, chunk);
        }

        EventFactory.callEvent(new ChunkPopulateEvent(chunk));
    }
View Full Code Here


        }
      }

      // Done
      BlockSand.instaFall = false;
      super.world.getServer().getPluginManager().callEvent(new ChunkPopulateEvent(chunk.bukkitChunk));
      // CraftBukkit end

      chunk.e();
    }
  }
View Full Code Here

        for (BlockPopulator populator : world.getPopulators()) {
          onPopulate(chunk.bukkitChunk, populator, random);
        }
      }
      BlockSand.instaFall = false;
      super.world.getServer().getPluginManager().callEvent(new ChunkPopulateEvent(chunk.bukkitChunk));
      // CraftBukkit end

      chunk.e();
    }
  }
View Full Code Here

TOP

Related Classes of org.bukkit.event.world.ChunkPopulateEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.