Skip to content

Commit fc824f2

Browse files
committed
Water animal sea level fix
BentoBoxWorld/BentoBox#2593
1 parent a91fc55 commit fc824f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/world/bentobox/aoneblock/AOneBlock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ private World getWorld(String worldName2, Environment env, ChunkGeneratorWorld c
212212
// Set world name
213213
worldName2 = env.equals(World.Environment.NETHER) ? worldName2 + NETHER : worldName2;
214214
worldName2 = env.equals(World.Environment.THE_END) ? worldName2 + THE_END : worldName2;
215-
WorldCreator wc = WorldCreator.name(worldName2).type(WorldType.FLAT).environment(env);
215+
WorldCreator wc = WorldCreator.name(worldName2).environment(env);
216216
World w = settings.isUseOwnGenerator() ? wc.createWorld() : wc.generator(chunkGenerator2).createWorld();
217217
// Set spawn rates
218218
if (w != null) {

0 commit comments

Comments
 (0)