Update GamePhases.kt

This commit is contained in:
bluefireoly
2020-09-13 15:14:59 +02:00
parent eb6313b452
commit d0cfa90346

View File

@@ -63,5 +63,6 @@ class GamePhase(
private val Long.isCounterValue: Boolean get() = when (this) {
1L, 2L, 3L, 4L, 5L, 10L, 15L, 20L, 30L -> true
0L -> false
else -> this % 60 == 0L
}