mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-30 04:02:50 +01:00
Move world generator warning to CraftBukkit. Fixes BUKKIT-2565
This commit is contained in:
parent
f08081c77d
commit
75641a607e
1 changed files with 4 additions and 1 deletions
|
@ -1008,9 +1008,12 @@ public final class CraftServer implements Server {
|
||||||
if (plugin == null) {
|
if (plugin == null) {
|
||||||
getLogger().severe("Could not set generator for default world '" + world + "': Plugin '" + split[0] + "' does not exist");
|
getLogger().severe("Could not set generator for default world '" + world + "': Plugin '" + split[0] + "' does not exist");
|
||||||
} else if (!plugin.isEnabled()) {
|
} else if (!plugin.isEnabled()) {
|
||||||
getLogger().severe("Could not set generator for default world '" + world + "': Plugin '" + split[0] + "' is not enabled yet (is it load:STARTUP?)");
|
getLogger().severe("Could not set generator for default world '" + world + "': Plugin '" + plugin.getDescription().getFullName() + "' is not enabled yet (is it load:STARTUP?)");
|
||||||
} else {
|
} else {
|
||||||
result = plugin.getDefaultWorldGenerator(world, id);
|
result = plugin.getDefaultWorldGenerator(world, id);
|
||||||
|
if (result == null) {
|
||||||
|
getLogger().severe("Could not set generator for default world '" + world + "': Plugin '" + plugin.getDescription().getFullName() + "' lacks a default world generator");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue