2 space indent -> 4 space indent

This commit is contained in:
Atlante45 2014-11-14 16:15:22 -08:00
parent 94f3f461ce
commit 87d472a5a9
2 changed files with 379 additions and 377 deletions

View file

@ -56,11 +56,13 @@
// Get board's user data
if (this.boardID !== null && this.boardID.isKnownID) {
this.boardUserData = this.getEntityUserData(this.boardID);
if (!(this.boardUserData &&
this.boardUserData.firstTile &&
this.boardUserData.tileSize &&
this.boardUserData.whitesDeadPieces &&
this.boardUserData.blacksDeadPieces)) {
this.boardUserData.blacksDeadPieces &&
this.boardUserData.pieces)) {
print("Incomplete boardUserData " + this.boardID.id);
} else {
this.FIRST_TILE = this.boardUserData.firstTile;