Fix ESLint
ScriptCraft/pipeline/head There was a failure building this commit Details

This commit is contained in:
TheBrokenRail 2020-05-23 13:36:49 -04:00
parent 6b1da9c5a6
commit 4b59f7eb8f
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ export class Pos {
* @returns String
*/
toString(): string {
return 'Pos{' + this.getX() + ', ' + this.getY() + ', ' + this.getZ() + '}';
return 'Pos{' + this.getX().toString() + ', ' + this.getY().toString() + ', ' + this.getZ().toString() + '}';
}
/**