Skip to content

Commit 8399e73

Browse files
committed
feat(gameLogic): Increase board size
1 parent 088df17 commit 8399e73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/src/shared/sc/plugin2020/util/Constants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ object Constants {
99
const val WIN_SCORE = 2
1010
const val GAME_STATS_ROUNDS = 0
1111

12-
const val BOARD_SIZE = 9
12+
const val BOARD_SIZE = 11
1313
val FIELD_AMOUNT = fieldAmount((BOARD_SIZE + 1) / 2)
1414
fun fieldAmount(radius: Int): Int =
1515
if(radius==1) 1 else (radius-1) * 6 + fieldAmount(radius-1)

0 commit comments

Comments
 (0)