1
0
Fork 0

[client] Fix a few referencing errors

This commit is contained in:
Starbeamrainbowlabs 2017-12-15 20:30:19 +00:00
parent 9fa7a04d47
commit 073e5709bc
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
2 changed files with 3 additions and 3 deletions

View File

@ -28,8 +28,8 @@ class CursorSyncer
{
return new ChunkReference(
this.boardWindow.currentPlaneName,
Math.floor(locRef.x / this.boardWindow.gridSize),
Math.floor(locRef.y / this.boardWindow.gridSize)
Math.floor(this.absCursorPosition.x / this.boardWindow.gridSize),
Math.floor(this.absCursorPosition.y / this.boardWindow.gridSize)
);
}

View File

@ -150,7 +150,7 @@ class Pencil
let lineToErase = hoverChunk.getLineUnderPoint(cursorPos);
if(lineToErase == null) {
console.debug(`No line found at abs ${locRef}.`);
console.debug(`No line found at abs ${cursorPos}.`);
break; // There's no line underneath the cursor atm
}