mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 01:06:25 +02:00
2 space indent -> 4 space indent
This commit is contained in:
parent
94f3f461ce
commit
87d472a5a9
2 changed files with 379 additions and 377 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue