summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/othello/core.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/othello/core.ts b/src/common/othello/core.ts
index 848cf486e7..39ceb921a9 100644
--- a/src/common/othello/core.ts
+++ b/src/common/othello/core.ts
@@ -166,7 +166,8 @@ export default class Othello {
* @param pos 位置
*/
public mapDataGet(pos: number): MapPixel {
- if (pos < 0 || pos >= this.map.length) return 'null';
+ const [x, y] = this.transformPosToXy(pos);
+ if (x < 0 || y < 0 || x >= this.mapWidth || y >= this.mapHeight) return 'null';
return this.map[pos];
}