diff --git a/src/common/othello/core.ts b/src/common/othello/core.ts index 0b4cb1fc19..8a0af4d508 100644 --- a/src/common/othello/core.ts +++ b/src/common/othello/core.ts @@ -81,12 +81,12 @@ export default class Othello { public transformPosToXy(pos: number): number[] { const x = pos % this.mapWidth; - const y = Math.floor(pos / this.mapHeight); + const y = Math.floor(pos / this.mapWidth); return [x, y]; } public transformXyToPos(x: number, y: number): number { - return x + (y * this.mapHeight); + return x + (y * this.mapWidth); } /**