Skip to content

Commit 15d7d3d

Browse files
authored
fix: Removed self edge in GRIDS (#60)
1 parent f65b50c commit 15d7d3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/game-logic/gridtypes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const GRIDS = [
4646
{ id: 5, x: 3, y: 1, neighbors: [1,4,8,9] },
4747
{ id: 6, x: 0, y: 2, neighbors: [2,3,7,10] },
4848
{ id: 7, x: 1, y: 2, neighbors: [2,3,4,6,8,10,11] },
49-
{ id: 8, x: 2, y: 2, neighbors: [3,4,5,7,8,10,11] },
49+
{ id: 8, x: 2, y: 2, neighbors: [3,4,5,7,9,10,11] },
5050
{ id: 9, x: 3, y: 2, neighbors: [4,5,8,11] },
5151
{ id: 10, x: 1, y: 3, neighbors: [6,7,8,11] },
5252
{ id: 11, x: 2, y: 3, neighbors: [7,8,9,10] },

0 commit comments

Comments
 (0)