Skip to content

Commit

Permalink
Remove hard coded seed
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Jan 16, 2024
1 parent c893883 commit 2384a35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/world/bentobox/skygrid/SkyGrid.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void createWorlds() {
}
BiomeProvider bp = new SkyGridBiomeProvider();
// Create the world if it does not exist
islandWorld = WorldCreator.name(worldName).environment(World.Environment.NORMAL).generator(gen).seed(123456L)
islandWorld = WorldCreator.name(worldName).environment(World.Environment.NORMAL).generator(gen)
.biomeProvider(bp).createWorld();

// Make the nether if it does not exist
Expand Down

0 comments on commit 2384a35

Please sign in to comment.