Custom world don't has nether

Discussion in 'Plugin Development' started by Skyost, Aug 31, 2013.

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

    Skyost

    Hi,
    I have created a custom world with his nether like this :
    Code:
    String name = "World" + new Random().nextInt(1000);
    currentWorld = Bukkit.createWorld(new WorldCreator(name));
    Bukkit.createWorld(new WorldCreator(name + "_nether").environment(Environment.NETHER));
    But when I want to go in the Nether with a Nether portal, i t don't work :(
    How can I do this ?
    Thanks :)

    (Sorry for my bad english, I am french.)
     
  2. Offline

    caseif

    Nether portals will always take you to level 1, which is the default nether world. If you want portals to take you to your level, you'll need to listen to the player going through the nether portal and change the location they're teleported to.
     
Thread Status:
Not open for further replies.

Share This Page