diff --git a/src/main/ts/src/minecraft/core.ts b/src/main/ts/src/minecraft/core.ts index 7f8d961..72f21a8 100644 --- a/src/main/ts/src/minecraft/core.ts +++ b/src/main/ts/src/minecraft/core.ts @@ -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() + '}'; } /**