Skip to content

Commit 86492a5

Browse files
committed
Pacru: Fix 2p starting position
1 parent bb81a77 commit 86492a5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/games/pacru.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ export interface IPacruState extends IAPGameState {
3737
};
3838

3939
const start2p: [string, CellContents][] = [
40-
["a9", {chevron: {owner: 1, facing: "SE"}}],
41-
["c9", {chevron: {owner: 2, facing: "S"}}],
42-
["g9", {chevron: {owner: 1, facing: "S"}}],
43-
["a5", {chevron: {owner: 2, facing: "E"}}],
44-
["i5", {chevron: {owner: 1, facing: "W"}}],
45-
["c1", {chevron: {owner: 2, facing: "N"}}],
46-
["g1", {chevron: {owner: 1, facing: "N"}}],
47-
["i1", {chevron: {owner: 2, facing: "NW"}}],
40+
["a3", {chevron: {owner: 1, facing: "E"}}],
41+
["e1", {chevron: {owner: 1, facing: "N"}}],
42+
["i3", {chevron: {owner: 1, facing: "W"}}],
43+
["i9", {chevron: {owner: 1, facing: "SW"}}],
44+
["a7", {chevron: {owner: 2, facing: "E"}}],
45+
["e9", {chevron: {owner: 2, facing: "S"}}],
46+
["i7", {chevron: {owner: 2, facing: "W"}}],
47+
["a1", {chevron: {owner: 2, facing: "NE"}}],
4848
];
4949
const start3p: [string, CellContents][] = [
5050
["c9", {chevron: {owner: 2, facing: "S"}}],

0 commit comments

Comments
 (0)