Skip to content

Commit

Permalink
Removed unusefull function
Browse files Browse the repository at this point in the history
  • Loading branch information
FliiFe committed Apr 18, 2016
1 parent 04fc4ff commit c979b4d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions bot.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -487,12 +487,6 @@ function AposBot() {
}
};

this.goToCoordinates = function(x, y){
//Placeholder for now. LOGIC (pseudo-code):
//currentCoordinates = getCurrentCoordinates(); (This function does not exist)
//destinationCoordinates = [x, y];
}

//Using a line formed from point a to b, tells if point c is on S side of that line.
this.isSideLine = function(a, b, c) {
if ((b[0] - a[0]) * (c[1] - a[1]) - (b[1] - a[1]) * (c[0] - a[0]) > 0) {
Expand Down

0 comments on commit c979b4d

Please sign in to comment.