We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 088df17 commit 8399e73Copy full SHA for 8399e73
plugin/src/shared/sc/plugin2020/util/Constants.kt
@@ -9,7 +9,7 @@ object Constants {
9
const val WIN_SCORE = 2
10
const val GAME_STATS_ROUNDS = 0
11
12
- const val BOARD_SIZE = 9
+ const val BOARD_SIZE = 11
13
val FIELD_AMOUNT = fieldAmount((BOARD_SIZE + 1) / 2)
14
fun fieldAmount(radius: Int): Int =
15
if(radius==1) 1 else (radius-1) * 6 + fieldAmount(radius-1)
0 commit comments