diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-10-09 00:49:48 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-10-09 00:49:48 +0900 |
| commit | c8dbf5776e20229a68ad623f9f05edc578185329 (patch) | |
| tree | 3de8dfb827d8579d4fd87b71fde141c57429825a /src | |
| parent | Improve the othello AI (diff) | |
| download | misskey-c8dbf5776e20229a68ad623f9f05edc578185329.tar.gz misskey-c8dbf5776e20229a68ad623f9f05edc578185329.tar.bz2 misskey-c8dbf5776e20229a68ad623f9f05edc578185329.zip | |
:v:
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/othello.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/othello.ts b/src/common/othello.ts index 15dc571ced..0f96d477ee 100644 --- a/src/common/othello.ts +++ b/src/common/othello.ts @@ -213,7 +213,7 @@ export default class Othello { public toPatternString(color): string { //const num = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']; - const num = ['0️⃣', '1️⃣', '2️⃣', '3️⃣', '4️⃣', '5️⃣', '6️⃣', '7️⃣', '8️⃣', '9️⃣', '🔟']; + const num = ['0️⃣', '1️⃣', '2️⃣', '3️⃣', '4️⃣', '5️⃣', '6️⃣', '7️⃣', '8️⃣', '9️⃣', '🔟', '🍏', '🍎', '🍐', '🍊', '🍋', '🍌', '🍉', '🍇', '🍓', '🍈', '🍒', '🍑', '🍍']; const pattern = this.getPattern(color); |