Fixed errors caused by reloading the plugin.

This commit is contained in:
sk89q 2010-11-19 20:32:41 -08:00
parent d09fcab7b3
commit e543ac733f
1 changed files with 4 additions and 1 deletions

View File

@ -89,7 +89,10 @@ public class WorldGuard extends Plugin {
*/
@Override
public void disable() {
BlacklistEntry.forgetAllPlayers();
try {
BlacklistEntry.forgetAllPlayers();
} catch (Throwable t) {
}
}
/**