forked from FoundKeyGang/FoundKey
✌️
This commit is contained in:
parent
f48c0a1e3f
commit
0ef2261889
1 changed files with 2 additions and 1 deletions
|
@ -166,7 +166,8 @@ export default class Othello {
|
||||||
* @param pos 位置
|
* @param pos 位置
|
||||||
*/
|
*/
|
||||||
public mapDataGet(pos: number): MapPixel {
|
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];
|
return this.map[pos];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue