We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 608cb86 commit 5f24520Copy full SHA for 5f24520
1 file changed
src/main/java/org/mvplugins/multiverse/core/world/generators/GeneratorProvider.java
@@ -95,7 +95,7 @@ private void loadPluginGenerators() {
95
private boolean testIsGeneratorPlugin(Plugin plugin) {
96
String worldName = Bukkit.getWorlds().stream().findFirst().map(World::getName).orElse("world");
97
try {
98
- return plugin.getDefaultWorldGenerator(worldName, null) != null;
+ return plugin.getDefaultWorldGenerator(worldName, "") != null;
99
} catch (UnsupportedOperationException e) {
100
// Some plugins throw this if they don't support world generation
101
return false;
0 commit comments