Skip to content

Commit

Permalink
Emergency bugfix for rollback SQL syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
N3X15 committed Jun 12, 2011
1 parent d73d384 commit 5948cbd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,17 @@ public abstract class BBDataBlock {
public long date;

public static enum Action {

/**
* A block has been broken.
*
* @author tkelly910
* @since Unknown
*/
BLOCK_BROKEN,

/**
*
*/
BLOCK_PLACED,
DESTROY_SIGN_TEXT,
TELEPORT,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ private StringBuilder getActionString(Rollback rollback) {
ret.append(act.ordinal());
ret.append("'");
}
ret.append("')");
ret.append(")");
BBLogging.info(ret.toString());
return ret;
}
Expand Down

0 comments on commit 5948cbd

Please sign in to comment.