Skip to content

Commit

Permalink
Fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
FliiFe committed Apr 20, 2016
1 parent e165a6f commit 88425f0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions bot.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,15 +284,15 @@ function AposBot() {
}
return false;
};

this.isVirus = function(blob, cell) {
if (cell.isVirus() && this.compareSize(cell, blob, 1.1)) {
return true;
} else if (cell.isVirus() && cell.color.substring(3, 5).toLowerCase() != "ff") {
return true;
}
return false;
};
if (cell.isVirus() && this.compareSize(cell, blob, 1.1)) {
return true;
} else if (cell.isVirus() && cell.color.substring(3, 5).toLowerCase() != "ff") {
return true;
}
return false;
};

this.isSplitTarget = function(that, blob, cell) {
if (that.canSplit(cell, blob)) {
Expand Down

0 comments on commit 88425f0

Please sign in to comment.