Generating a normal world -> only 1 Biome Type

Discussion in 'Plugin Development' started by Kingzuck, Aug 5, 2014.

Thread Status:
Not open for further replies.
  1. My Question is in the Title :p
     
  2. Offline

    Dragonphase

    Kingzuck

    I'm not an expert on World Generation but I don't think you'll be able to generate a default Minecraft world (if that's what you mean by "normal world") with one Biome.

    If it were me, I would use a ChunkLoadEvent:

    Code:java
    1. @EventHandler
    2. public void onChunkLoad(ChunkLoadEvent event){
    3. if (!event.isNewChunk()) return;
    4.  
    5. for (int x = 0; x < 16; x ++){
    6. for (int z = 0; z < 16; z ++){
    7. chunk.getBlock(x, 0, z).setBiome(Biome.PLAINS);
    8. }
    9. }
    10. }
     
  3. The Biome is then PLAINS but, the Generation is normal...
    Also it doesnt work :p
     
  4. Offline

    Dragonphase

    Kingzuck

    There is no "NORMAL" biome. Are you trying to generate a default Minecraft world with one biome, or a flat world with one biome?
     
  5. I tryied to generate a normal World with only 1biome, like only plaines...
    Also no ozean, jungel,....
     
  6. Offline

    Dragonphase

  7. Offline

    Gater12

  8. Last edited by a moderator: Jun 9, 2016
Thread Status:
Not open for further replies.

Share This Page