aboutsummaryrefslogtreecommitdiffstats
path: root/backend/ts/gameBoard.ts
diff options
context:
space:
mode:
authorMaks Jopek <maksymilian.jopek@prym-soft.pl>2021-04-26 14:43:25 +0200
committerMaks Jopek <maksymilian.jopek@prym-soft.pl>2021-04-26 14:43:25 +0200
commit6baaa14bde032afa363dbdd50119a20e9f47df1c (patch)
tree82e7ba81f36e725e282eadd5c8c61f4304b1bf85 /backend/ts/gameBoard.ts
parent013319d7a4651d1708280f556e39c2f03839426a (diff)
downloadfia-6baaa14bde032afa363dbdd50119a20e9f47df1c.tar.gz
fia-6baaa14bde032afa363dbdd50119a20e9f47df1c.tar.zst
fia-6baaa14bde032afa363dbdd50119a20e9f47df1c.zip
Bugfixes: to home, [40] -> [1], not destroying old chequer
Diffstat (limited to 'backend/ts/gameBoard.ts')
-rw-r--r--backend/ts/gameBoard.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/backend/ts/gameBoard.ts b/backend/ts/gameBoard.ts
index 314c874..0edbae1 100644
--- a/backend/ts/gameBoard.ts
+++ b/backend/ts/gameBoard.ts
@@ -71,25 +71,25 @@ export const gameBoard: GameBoard = {
},
// @ts-ignore
homes: {
- [Color.red]: [
+ [Color.blue]: [
{ x: 5, y: 1, chequer: -1 },
{ x: 5, y: 2, chequer: -1 },
{ x: 5, y: 3, chequer: -1 },
{ x: 5, y: 4, chequer: -1 },
],
- [Color.blue]: [
+ [Color.red]: [
{ x: 1, y: 5, chequer: -1 },
{ x: 2, y: 5, chequer: -1 },
{ x: 3, y: 5, chequer: -1 },
{ x: 4, y: 5, chequer: -1 },
],
- [Color.green]: [
+ [Color.yellow]: [
{ x: 5, y: 9, chequer: -1 },
{ x: 5, y: 8, chequer: -1 },
{ x: 5, y: 7, chequer: -1 },
{ x: 5, y: 6, chequer: -1 },
],
- [Color.yellow]: [
+ [Color.green]: [
{ x: 9, y: 5, chequer: -1 },
{ x: 8, y: 5, chequer: -1 },
{ x: 7, y: 5, chequer: -1 },