Just NAG once, to be nice

By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
Bukkit/Spigot
2011-03-30 00:38:46 +02:00
parent db5dfb3f10
commit 69973b8617
3 changed files with 32 additions and 6 deletions

View File

@ -254,12 +254,16 @@ public final class SimplePluginManager implements PluginManager {
try {
registration.callEvent( event );
} catch (AuthorNagException ex) {
server.getLogger().log(Level.SEVERE, String.format(
"Nag author: %s of %s about the following:",
registration.getPlugin().getDescription().getAuthors().get(0),
registration.getPlugin().getDescription().getName(),
ex.getMessage()
));
Plugin plugin = registration.getPlugin();
if (plugin.isNaggable()) {
plugin.setNaggable(false);
server.getLogger().log(Level.SEVERE, String.format(
"Nag author: %s of %s about the following:",
plugin.getDescription().getAuthors().get(0),
plugin.getDescription().getName(),
ex.getMessage()
));
}
} catch (Throwable ex) {
server.getLogger().log(Level.SEVERE, "Could not pass event " + event.getType() + " to " + registration.getPlugin().getDescription().getName(), ex);
}