Skip to content

Commit

Permalink
Updated CHANGELOG.txt with new bugfix versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
sk89q committed Oct 17, 2010
1 parent aa63f88 commit 52029a7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
0.8.3:
- //rotate fixed.
- Fixed some floating point inacurracy errors.
- Exceptions are now caught when handling commands so that they can be
reported to the current user.

0.8.2:
- Signs that are not in a loaded chunk will no longer cause an exception.
- -/unstuck, /ascend, and /descend are more accurate now. /descend also
won't drop you from 20 feet up and it won't drop you into the void anymore.

0.8.1:
- Added a workaround for the onBlockDestroy hook returning (0, 0, 0).

0.8:
- All operations now implicitly support working with block data, including
sign text. This applies to .schematic loading and saving.
Expand Down
4 changes: 4 additions & 0 deletions src/SMWorldEditListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,10 @@ public boolean onCommand(Player modPlayer, String[] split) {
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;
Expand Down

0 comments on commit 52029a7

Please sign in to comment.