Create Sky world

Discussion in 'Plugin Development' started by Moon_werewolf, Jan 5, 2013.

Thread Status:
Not open for further replies.
  1. Offline

    Moon_werewolf

    How do I create a Sky world? I tried with this

    Code:
            wc = new WorldCreator(world.getName()+"_sky");
            wc.seed(world.getSeed());
            wc.type(world.getWorldType());
            wc.generateStructures(false);
            wc.environment(World.Environment.SKY);
    
    But Environment sky don't exists, I have tried to search the ID for the world so i can use Environment.getEnvironment(int); but without success.
     
  2. Offline

    gyroninja

    Sky worlds were taken out in beta 1.8 and replaced with the end.Sorry they no longer exist in the code.
     
  3. Offline

    Moon_werewolf

    Okay... Then how do i create a normal world with no layers?
     
  4. Offline

    gyroninja

    You mean empty? Just air?
     
  5. Offline

    Moon_werewolf

    Just air.
     
  6. Offline

    gyroninja

Thread Status:
Not open for further replies.

Share This Page