Skip to content

Commit

Permalink
fix: formatting mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrueckert committed Aug 18, 2024
1 parent c418645 commit 1590001
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,9 @@ public WorldGeneratorInfo get() {
@Override
public void set(WorldGeneratorInfo worldGeneratorInfo) {
if (worldGeneratorInfo != null && (context.get(UniverseWrapper.class).getWorldGenerator() == null
|| !worldGeneratorInfo.getUri().equals(context.get(UniverseWrapper.class).getWorldGenerator().getUri()))) {
config.getWorldGeneration().setDefaultGenerator(worldGeneratorInfo.getUri());
addNewWorld(worldGeneratorInfo);
}
|| !worldGeneratorInfo.getUri().equals(context.get(UniverseWrapper.class).getWorldGenerator().getUri()))) {
config.getWorldGeneration().setDefaultGenerator(worldGeneratorInfo.getUri());
addNewWorld(worldGeneratorInfo);
}
}
});
Expand Down

0 comments on commit 1590001

Please sign in to comment.