Skip to content

Commit

Permalink
fix: fix not using nato mils in squad
Browse files Browse the repository at this point in the history
  • Loading branch information
Endebert committed Aug 29, 2020
1 parent 2f032a3 commit 889f678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/assets/Utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export function radToMil(rad) {
* @returns {number} NATO mils
*/
export function radToNatoMil(rad) {
return degToMil(radToDeg(rad));
return degToNatoMil(radToDeg(rad));
}

/**
Expand Down

0 comments on commit 889f678

Please sign in to comment.