Updated CHANGELOG.txt with new bugfix versions.

This commit is contained in:
sk89q
2010-10-17 15:31:17 -07:00
parent aa63f886ec
commit 52029a786d
2 changed files with 18 additions and 0 deletions

View File

@ -168,6 +168,10 @@ public class SMWorldEditListener extends PluginListener {
modPlayer.sendMessage(Colors.Rose + "Your clipboard is empty.");
} catch (WorldEditException e7) {
modPlayer.sendMessage(Colors.Rose + e7.getMessage());
} catch (Throwable excp) {
modPlayer.sendMessage(Colors.Rose + "Please report this error: [See console]");
modPlayer.sendMessage(excp.getClass().getName() + ": " + excp.getMessage());
excp.printStackTrace();
}
return true;