Move world generator warning to CraftBukkit. Fixes BUKKIT-2565

By: Score_Under <seejay.11@gmail.com>
This commit is contained in:
CraftBukkit/Spigot 2013-03-21 17:50:58 +00:00
parent 9fdae1c35b
commit c33c52d7a2

View file

@ -1008,9 +1008,12 @@ public final class CraftServer implements Server {
if (plugin == null) {
getLogger().severe("Could not set generator for default world '" + world + "': Plugin '" + split[0] + "' does not exist");
} 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 {
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");
}
}
}
}