Skip to content

Commit 411d93e

Browse files
authored
Merge pull request #537 from BentoBoxWorld/sea_level_fix
Fix for BentoBoxWorld/BentoBox#2593
2 parents 611d9ee + 044134b commit 411d93e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/world/bentobox/bskyblock/BSkyBlock.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ private World getWorld(String worldName2, Environment env, ChunkGeneratorWorld c
127127
// Set world name
128128
worldName2 = env.equals(World.Environment.NETHER) ? worldName2 + NETHER : worldName2;
129129
worldName2 = env.equals(World.Environment.THE_END) ? worldName2 + THE_END : worldName2;
130-
WorldCreator wc = WorldCreator.name(worldName2).type(WorldType.FLAT).environment(env);
130+
WorldCreator wc = WorldCreator.name(worldName2).environment(env);
131131
World w = settings.isUseOwnGenerator() ? wc.createWorld() : wc.generator(chunkGenerator2).createWorld();
132132
// Set spawn rates
133133
// Set spawn rates

0 commit comments

Comments
 (0)