From bef678df9579cf3bc173aa2e7af7753ec755bd5d Mon Sep 17 00:00:00 2001
From: Aya Morisawa <AyaMorisawa4869@gmail.com>
Date: Fri, 9 Mar 2018 00:47:41 +0900
Subject: [PATCH 1/2] Add Big board map

---
 src/common/othello/maps.ts | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 2f8dc5ff7..02fe4562f 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -333,3 +333,26 @@ export const iphonex: Map = {
 		'  --------  ' +
 		'   ------   '
 };
+
+export const bigBoard: Map = {
+	name: 'Big board',
+	category: 'special',
+	size: 16,
+	data:
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'-------wb-------' +
+		'-------bw-------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+		'----------------' +
+};

From b7e3c9b3170b3e0f1644161e6dbe1df3e9ce7779 Mon Sep 17 00:00:00 2001
From: Aya Morisawa <AyaMorisawa4869@gmail.com>
Date: Fri, 9 Mar 2018 00:48:50 +0900
Subject: [PATCH 2/2] Remove trailing +

---
 src/common/othello/maps.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts
index 02fe4562f..67fcb8260 100644
--- a/src/common/othello/maps.ts
+++ b/src/common/othello/maps.ts
@@ -354,5 +354,5 @@ export const bigBoard: Map = {
 		'----------------' +
 		'----------------' +
 		'----------------' +
-		'----------------' +
+		'----------------'
 };