Skip to content

Commit 39cd279

Browse files
authored
Merge pull request #416 from BentoBoxWorld/develop
Release 1.18.2
2 parents 533bb3a + 83da1b5 commit 39cd279

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<!-- Do not change unless you want different name for local builds. -->
6464
<build.number>-LOCAL</build.number>
6565
<!-- This allows to change between versions. -->
66-
<build.version>1.18.1</build.version>
66+
<build.version>1.18.2</build.version>
6767
<!-- SonarCloud -->
6868
<sonar.projectKey>BentoBoxWorld_AOneBlock</sonar.projectKey>
6969
<sonar.organization>bentobox-world</sonar.organization>

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)