diff --git a/package.json b/package.json index 87ae547..12c1f7e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dayzr-bot", - "version": "12.5.7", + "version": "12.5.8", "description": "A General Purpose Discord Bot for DayZ Nitrado Servers.", "main": "index.js", "nodemonConfig": { diff --git a/util/Vector.js b/util/Vector.js index cfa3769..da6f0a0 100644 --- a/util/Vector.js +++ b/util/Vector.js @@ -4,7 +4,7 @@ module.exports = { let distance = parseFloat(Math.sqrt(Math.pow(delta[0], 2) + Math.pow(delta[1], 2)).toFixed(0)); let thetat = Math.round(Math.atan2(delta[0], delta[1]) / Math.PI * 180); let theta = (thetat < 0) ? (360 + thetat) : thetat; - let compass = ["S", "SW", "W", "NW", "N", "N by NE", "NE", "E", "SE", "S"]; + let compass = ["S", "SW", "W", "NW", "N", "NE", "E", "SE", "S"]; let dir = compass[Math.round(theta / 45)]; return {distance, theta, dir}