Examples of ChunkPopulateEvent


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

Examples of org.bukkit.event.world.ChunkPopulateEvent

        }
      }

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

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

Examples of org.bukkit.event.world.ChunkPopulateEvent

        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
Copyright © 2018 www.massapi.com. 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.