org.bukkit.generator.BlockPopulator Java Examples
The following examples show how to use
org.bukkit.generator.BlockPopulator.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CraftWorld.java From Kettle with GNU General Public License v3.0 | 4 votes |
public List<BlockPopulator> getPopulators() { return populators; }
Example #2
Source File: ChunkGeneratorWorld.java From askyblock with GNU General Public License v2.0 | 4 votes |
@Override public List<BlockPopulator> getDefaultPopulators(final World world) { /* if (world.getEnvironment().equals(World.Environment.NETHER)) { return Arrays.<BlockPopulator> asList(new NetherPopulator()); }*/ return Arrays.asList(new BlockPopulator[0]); }
Example #3
Source File: SkyblockGenerator.java From IridiumSkyblock with GNU General Public License v2.0 | 3 votes |
@Override public List<BlockPopulator> getDefaultPopulators(World world) { return Collections.emptyList(); }
Example #4
Source File: NormalChunkGenerator.java From Kettle with GNU General Public License v3.0 | 3 votes |
@Override public List<BlockPopulator> getDefaultPopulators(org.bukkit.World world) { return new ArrayList<>(); }
Example #5
Source File: CustomChunkGenerator.java From Kettle with GNU General Public License v3.0 | 3 votes |
@Override public List<BlockPopulator> getDefaultPopulators(org.bukkit.World world) { return generator.getDefaultPopulators(world); }
Example #6
Source File: WorldImpl.java From Civs with GNU General Public License v3.0 | 3 votes |
@Override public List<BlockPopulator> getPopulators() { return null; }
Example #7
Source File: NormalChunkGenerator.java From Thermos with GNU General Public License v3.0 | 3 votes |
public List<BlockPopulator> getDefaultPopulators(org.bukkit.World world) { return new ArrayList<BlockPopulator>(); }
Example #8
Source File: CustomChunkGenerator.java From Thermos with GNU General Public License v3.0 | 3 votes |
@Override public List<BlockPopulator> getDefaultPopulators(org.bukkit.World world) { return generator.getDefaultPopulators(world); }
Example #9
Source File: CraftWorld.java From Thermos with GNU General Public License v3.0 | 3 votes |
public List<BlockPopulator> getPopulators() { return populators; }
Example #10
Source File: AsyncWorld.java From FastAsyncWorldedit with GNU General Public License v3.0 | 3 votes |
@Override public List<BlockPopulator> getPopulators() { return parent.getPopulators(); }
Example #11
Source File: SkyBlockNetherChunkGenerator.java From uSkyBlock with GNU General Public License v3.0 | 3 votes |
@Override public List<BlockPopulator> getDefaultPopulators(World world) { return emptyBlockPopulatorList; }
Example #12
Source File: SkyBlockChunkGenerator.java From uSkyBlock with GNU General Public License v3.0 | 3 votes |
@Override public List<BlockPopulator> getDefaultPopulators(World world) { return emptyBlockPopulatorList; }
Example #13
Source File: World.java From Kettle with GNU General Public License v3.0 | 1 votes |
/** * Gets a list of all applied {@link BlockPopulator}s for this World * * @return List containing any or none BlockPopulators */ public List<BlockPopulator> getPopulators();